diff --git a/docs/command/atlas-clusters-create.txt b/docs/command/atlas-clusters-create.txt index f378e50ae0..4f14e97116 100644 --- a/docs/command/atlas-clusters-create.txt +++ b/docs/command/atlas-clusters-create.txt @@ -97,9 +97,9 @@ Options * - --mdbVersion - string - false - - Major MongoDB version of the cluster. + - Major MongoDB version of the cluster. When no value is specified, the latest stable MongoDB version is used, see: https://www.mongodb.com/resources/products/mongodb-version-history. - Mutually exclusive with --file. This value defaults to "8.0". + Mutually exclusive with --file. * - -m, --members - int - false diff --git a/internal/cli/clusters/create.go b/internal/cli/clusters/create.go index 612dfbde0a..73a38ce8ca 100644 --- a/internal/cli/clusters/create.go +++ b/internal/cli/clusters/create.go @@ -332,7 +332,11 @@ func (opts *CreateOpts) applyOptsAdvancedCluster(out *atlasClustersPinned.Advanc if !opts.isTenant() { out.DiskSizeGB = &opts.diskSizeGB - out.MongoDBMajorVersion = &opts.mdbVersion + + // If no MongoDB version is specified, the backend uses the default MongoDB version + if opts.mdbVersion != "" { + out.MongoDBMajorVersion = &opts.mdbVersion + } } out.ReplicationSpecs = &[]atlasClustersPinned.ReplicationSpec{replicationSpec} @@ -588,8 +592,6 @@ Deprecation note: the M2 and M5 tiers are now deprecated; when selecting M2 or M }, } - currentMDBVersion, _ := cli.DefaultMongoDBMajorVersion() - const ( defaultMembersSize = 3 defaultDiskSize = 2 @@ -600,7 +602,7 @@ Deprecation note: the M2 and M5 tiers are now deprecated; when selecting M2 or M cmd.Flags().IntVarP(&opts.members, flag.Members, flag.MembersShort, defaultMembersSize, usage.Members) cmd.Flags().StringVar(&opts.tier, flag.Tier, atlasFlex, usage.Tier) cmd.Flags().Float64Var(&opts.diskSizeGB, flag.DiskSizeGB, defaultDiskSize, usage.DiskSizeGB) - cmd.Flags().StringVar(&opts.mdbVersion, flag.MDBVersion, currentMDBVersion, usage.MDBVersion) + cmd.Flags().StringVar(&opts.mdbVersion, flag.MDBVersion, "", usage.MDBVersionCreate) cmd.Flags().BoolVar(&opts.backup, flag.Backup, false, usage.Backup) cmd.Flags().BoolVar(&opts.biConnector, flag.BIConnector, false, usage.BIConnector) cmd.Flags().StringVarP(&opts.filename, flag.File, flag.FileShort, "", usage.ClusterFilename) diff --git a/internal/usage/usage.go b/internal/usage/usage.go index 7bb932a1cf..96f44045b4 100644 --- a/internal/usage/usage.go +++ b/internal/usage/usage.go @@ -38,6 +38,7 @@ const ( NExamples = "Maximum number of example queries to provide that a suggested index will improve." NIndexes = "Maximum number of indexes to suggest." MDBVersion = "Major MongoDB version of the cluster." + MDBVersionCreate = "Major MongoDB version of the cluster. When no value is specified, the latest stable MongoDB version is used, see: https://www.mongodb.com/resources/products/mongodb-version-history." DeploymentMDBVersion = "Major MongoDB version of the deployment." AtlasAuthDB = "Authentication database name. If the user authenticates with AWS IAM, x.509, or LDAP, this value should be $external. If the user authenticates with SCRAM-SHA, this value should be admin." Granularity = "ISO 8601-formatted duration that specifies the interval between measurement data points. Only the following subset of ISO 8601-formatted time periods are supported: PT10S, PT1M, PT5M, PT1H, P1D. When you specify granularity, you must specify either period or start and end." diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost deleted file mode 100644 index 31011b7e9e..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 469 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 241 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.97/32","comment":"test","deleteAfterDate":"2025-07-22T05:17:50Z","groupId":"687f1dd0a799aa2ae9e80b99","ipAddress":"192.168.0.97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList/192.168.0.97%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost new file mode 100644 index 0000000000..db02792822 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Create_Delete_After/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 469 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 139 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.55/32","comment":"test","deleteAfterDate":"2025-07-24T15:11:01Z","groupId":"68824bd5b4489810533462f2","ipAddress":"192.168.0.55","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList/192.168.0.55%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost deleted file mode 100644 index 2ba9c2c995..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 428 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:49 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 158 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.97/32","comment":"test","groupId":"687f1dd0a799aa2ae9e80b99","ipAddress":"192.168.0.97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList/192.168.0.97%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost new file mode 100644 index 0000000000..46ac76fdf4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Create_Forever/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 428 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 137 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.55/32","comment":"test","groupId":"68824bd5b4489810533462f2","ipAddress":"192.168.0.55","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList/192.168.0.55%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/GET_api_private_ipinfo_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/GET_api_private_ipinfo_1.snaphost index 519f432b57..d759834164 100644 --- a/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/GET_api_private_ipinfo_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/GET_api_private_ipinfo_1.snaphost @@ -1,7 +1,7 @@ HTTP/2.0 200 OK -Content-Length: 40 +Content-Length: 37 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:51 GMT +Date: Thu, 24 Jul 2025 15:06:01 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; @@ -9,8 +9,8 @@ X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Java-Method: ApiPrivateIpInfoResource::getIpInfo X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 -{"currentIpv4Address":"172.174.166.194"} \ No newline at end of file +{"currentIpv4Address":"4.236.159.84"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost deleted file mode 100644 index 6dd8f63cfe..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 437 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 139 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"172.174.166.194/32","comment":"test","groupId":"687f1dd0a799aa2ae9e80b99","ipAddress":"172.174.166.194","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList/172.174.166.194%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost new file mode 100644 index 0000000000..3241342631 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Create_with_CurrentIp/POST_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 428 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 118 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"4.236.159.84/32","comment":"test","groupId":"68824bd5b4489810533462f2","ipAddress":"4.236.159.84","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList/4.236.159.84%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost deleted file mode 100644 index 4e84dbdedd..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost new file mode 100644 index 0000000000..2622dc195b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Delete#01/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_172.174.166.194_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_172.174.166.194_1.snaphost deleted file mode 100644 index 0ccde87fa9..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_172.174.166.194_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 130 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_4.236.159.84_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_4.236.159.84_1.snaphost new file mode 100644 index 0000000000..dffc0bbd32 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Delete#02/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_4.236.159.84_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost deleted file mode 100644 index c40a7df3ea..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 128 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost new file mode 100644 index 0000000000..6e9fcda8e0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Delete/DELETE_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 136 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::deleteAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost deleted file mode 100644 index 96f180ad83..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_192.168.0.97_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 242 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 84 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasNetworkPermissionEntry -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cidrBlock":"192.168.0.97/32","comment":"test","groupId":"687f1dd0a799aa2ae9e80b99","ipAddress":"192.168.0.97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList/192.168.0.97%2F32","rel":"self"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost new file mode 100644 index 0000000000..75caf3fe04 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/Describe/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_192.168.0.55_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 242 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasNetworkPermissionEntry +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cidrBlock":"192.168.0.55/32","comment":"test","groupId":"68824bd5b4489810533462f2","ipAddress":"192.168.0.55","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList/192.168.0.55%2F32","rel":"self"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost deleted file mode 100644 index c93b7acb89..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_687f1dd0a799aa2ae9e80b99_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 428 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 72 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.97/32","comment":"test","groupId":"687f1dd0a799aa2ae9e80b99","ipAddress":"192.168.0.97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/accessList/192.168.0.97%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost new file mode 100644 index 0000000000..b079b35d32 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessList/List/GET_api_atlas_v2_groups_68824bd5b4489810533462f2_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 428 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 65 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.55/32","comment":"test","groupId":"68824bd5b4489810533462f2","ipAddress":"192.168.0.55","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/accessList/192.168.0.55%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessList/POST_api_atlas_v2_groups_1.snaphost index 38fb60bd91..6307207c9f 100644 --- a/test/e2e/testdata/.snapshots/TestAccessList/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAccessList/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1072 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:48 GMT +Date: Thu, 24 Jul 2025 15:05:57 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1668 +X-Envoy-Upstream-Service-Time: 2925 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:49Z","id":"687f1dd0a799aa2ae9e80b99","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd0a799aa2ae9e80b99/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessList-e2e-785","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:59Z","id":"68824bd5b4489810533462f2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd5b4489810533462f2/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessList-e2e-513","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessList/memory.json b/test/e2e/testdata/.snapshots/TestAccessList/memory.json index 66e6d63091..ee1a10d0c3 100644 --- a/test/e2e/testdata/.snapshots/TestAccessList/memory.json +++ b/test/e2e/testdata/.snapshots/TestAccessList/memory.json @@ -1 +1 @@ -{"TestAccessList/rand":"YQ=="} \ No newline at end of file +{"TestAccessList/rand":"Nw=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_1.snaphost deleted file mode 100644 index de5ad36c42..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1818 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:31 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:30Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7fa799aa2ae9e804de","id":"687f1d8244f1ab3f84231449","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-141","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8244f1ab3f84231439","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8244f1ab3f84231441","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_2.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_2.snaphost deleted file mode 100644 index 98cc19e895..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1904 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:31 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:30Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7fa799aa2ae9e804de","id":"687f1d8244f1ab3f84231449","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-141","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8244f1ab3f84231442","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8244f1ab3f84231441","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_3.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_3.snaphost deleted file mode 100644 index bc5028d0a7..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_accessLogs-141_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2217 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://accesslogs-141-shard-00-00.oxgknb.mongodb-dev.net:27017,accesslogs-141-shard-00-01.oxgknb.mongodb-dev.net:27017,accesslogs-141-shard-00-02.oxgknb.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-60w0wm-shard-0","standardSrv":"mongodb+srv://accesslogs-141.oxgknb.mongodb-dev.net"},"createDate":"2025-07-22T05:11:30Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7fa799aa2ae9e804de","id":"687f1d8244f1ab3f84231449","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-141","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8244f1ab3f84231442","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8244f1ab3f84231441","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_provider_regions_1.snaphost deleted file mode 100644 index 73fe88d9f4..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 121 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_processes_1.snaphost deleted file mode 100644 index 33433cd03f..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_processes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1862 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:20:31Z","groupId":"687f1d7fa799aa2ae9e804de","hostname":"atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net","id":"atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net:27017","lastPing":"2025-07-22T05:21:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/processes/atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-60w0wm-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"accesslogs-141-shard-00-00.oxgknb.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:20:31Z","groupId":"687f1d7fa799aa2ae9e804de","hostname":"atlas-60w0wm-shard-00-01.oxgknb.mongodb-dev.net","id":"atlas-60w0wm-shard-00-01.oxgknb.mongodb-dev.net:27017","lastPing":"2025-07-22T05:21:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/processes/atlas-60w0wm-shard-00-01.oxgknb.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-60w0wm-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"accesslogs-141-shard-00-01.oxgknb.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:20:31Z","groupId":"687f1d7fa799aa2ae9e804de","hostname":"atlas-60w0wm-shard-00-02.oxgknb.mongodb-dev.net","id":"atlas-60w0wm-shard-00-02.oxgknb.mongodb-dev.net:27017","lastPing":"2025-07-22T05:21:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/processes/atlas-60w0wm-shard-00-02.oxgknb.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-60w0wm-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"accesslogs-141-shard-00-02.oxgknb.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_1.snaphost new file mode 100644 index 0000000000..73e61d301a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1818 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:12 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:12Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824ba542be0f23307f3874","id":"68824ba842be0f23307f397a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-542","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824ba742be0f23307f3966","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba742be0f23307f3970","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_2.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_2.snaphost new file mode 100644 index 0000000000..5f0c1cbb69 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1904 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 118 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:12Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824ba542be0f23307f3874","id":"68824ba842be0f23307f397a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-542","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba742be0f23307f3971","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba742be0f23307f3970","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_3.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_3.snaphost new file mode 100644 index 0000000000..bfc91717b9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_accessLogs-542_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2217 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://accesslogs-542-shard-00-00.tribfe.mongodb-dev.net:27017,accesslogs-542-shard-00-01.tribfe.mongodb-dev.net:27017,accesslogs-542-shard-00-02.tribfe.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-k273el-shard-0","standardSrv":"mongodb+srv://accesslogs-542.tribfe.mongodb-dev.net"},"createDate":"2025-07-24T15:05:12Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824ba542be0f23307f3874","id":"68824ba842be0f23307f397a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-542","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba742be0f23307f3971","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba742be0f23307f3970","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..815e9cc0d8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_processes_1.snaphost new file mode 100644 index 0000000000..7828b95133 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_processes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1862 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 143 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:12:28Z","groupId":"68824ba542be0f23307f3874","hostname":"atlas-k273el-shard-00-00.tribfe.mongodb-dev.net","id":"atlas-k273el-shard-00-00.tribfe.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:09Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/processes/atlas-k273el-shard-00-00.tribfe.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-k273el-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"accesslogs-542-shard-00-00.tribfe.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:28Z","groupId":"68824ba542be0f23307f3874","hostname":"atlas-k273el-shard-00-01.tribfe.mongodb-dev.net","id":"atlas-k273el-shard-00-01.tribfe.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:09Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/processes/atlas-k273el-shard-00-01.tribfe.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-k273el-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"accesslogs-542-shard-00-01.tribfe.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:29Z","groupId":"68824ba542be0f23307f3874","hostname":"atlas-k273el-shard-00-02.tribfe.mongodb-dev.net","id":"atlas-k273el-shard-00-02.tribfe.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:09Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/processes/atlas-k273el-shard-00-02.tribfe.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-k273el-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"accesslogs-542-shard-00-02.tribfe.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 710b274321..7ea687c414 100644 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:29 GMT +Date: Thu, 24 Jul 2025 15:05:11 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_clusters_accessLogs-141_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_clusters_accessLogs-141_1.snaphost deleted file mode 100644 index 97115072e3..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_clusters_accessLogs-141_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 869 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasMongoDBAccessLogsResource::getAccessLogsOfCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"accessLogs":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_clusters_accessLogs-542_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_clusters_accessLogs-542_1.snaphost new file mode 100644 index 0000000000..7857f5f391 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_clusterName/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_clusters_accessLogs-542_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 369 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasMongoDBAccessLogsResource::getAccessLogsOfCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"accessLogs":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_processes_atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_processes_atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net_1.snaphost deleted file mode 100644 index 5bd1f2ac38..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_dbAccessHistory_processes_atlas-60w0wm-shard-00-00.oxgknb.mongodb-dev.net_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 334 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasMongoDBAccessLogsResource::getAccessLogsOfHostname -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"accessLogs":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_processes_atlas-k273el-shard-00-00.tribfe.mongodb-dev.net_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_processes_atlas-k273el-shard-00-00.tribfe.mongodb-dev.net_1.snaphost new file mode 100644 index 0000000000..13f48716b9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/List_by_hostname/GET_api_atlas_v2_groups_68824ba542be0f23307f3874_dbAccessHistory_processes_atlas-k273el-shard-00-00.tribfe.mongodb-dev.net_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 338 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasMongoDBAccessLogsResource::getAccessLogsOfHostname +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"accessLogs":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_1.snaphost index c4daea912b..9e73e6d3ac 100644 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1072 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT +Date: Thu, 24 Jul 2025 15:05:09 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2640 +X-Envoy-Upstream-Service-Time: 1876 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:29Z","id":"687f1d7fa799aa2ae9e804de","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessLogs-e2e-969","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:11Z","id":"68824ba542be0f23307f3874","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessLogs-e2e-651","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_1.snaphost deleted file mode 100644 index eeec1b332a..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_687f1d7fa799aa2ae9e804de_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1808 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 636 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:30Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7fa799aa2ae9e804de","id":"687f1d8244f1ab3f84231449","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de/clusters/accessLogs-141/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-141","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8244f1ab3f84231439","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8244f1ab3f84231441","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_1.snaphost new file mode 100644 index 0000000000..d1bbc256a9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/POST_api_atlas_v2_groups_68824ba542be0f23307f3874_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1808 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 668 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:12Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824ba542be0f23307f3874","id":"68824ba842be0f23307f397a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874/clusters/accessLogs-542/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"accessLogs-542","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824ba742be0f23307f3966","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba742be0f23307f3970","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessLogs/memory.json b/test/e2e/testdata/.snapshots/TestAccessLogs/memory.json index 9f27f48e59..1de63b7462 100644 --- a/test/e2e/testdata/.snapshots/TestAccessLogs/memory.json +++ b/test/e2e/testdata/.snapshots/TestAccessLogs/memory.json @@ -1 +1 @@ -{"TestAccessLogs/accessLogsGenerateClusterName":"accessLogs-141"} \ No newline at end of file +{"TestAccessLogs/accessLogsGenerateClusterName":"accessLogs-542"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost deleted file mode 100644 index 6be1291e93..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 283 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 118 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderAccessResource::addCloudProviderAccessRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"atlasAWSAccountArn":"arn:aws:iam::299602853325:root","atlasAssumedRoleExternalId":"2e33929b-ec7a-438f-b7f6-5b2007a96402","authorizedDate":null,"createdDate":"2025-07-22T05:12:55Z","featureUsages":[],"iamAssumedRoleArn":null,"providerName":"AWS","roleId":"687f1dd7a799aa2ae9e80c20"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost new file mode 100644 index 0000000000..e56e8c927f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessRoles/Create/POST_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 283 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:06 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderAccessResource::addCloudProviderAccessRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"atlasAWSAccountArn":"arn:aws:iam::299602853325:root","atlasAssumedRoleExternalId":"092f7e89-2a2e-44ee-b91e-ba7379b98ba6","authorizedDate":null,"createdDate":"2025-07-24T15:06:06Z","featureUsages":[],"iamAssumedRoleArn":null,"providerName":"AWS","roleId":"68824bdeb4489810533464d7"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost deleted file mode 100644 index cf47cfa485..0000000000 --- a/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_687f1dd544f1ab3f84231adb_cloudProviderAccess_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 353 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderAccessResource::getCloudProviderAccess -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIamRoles":[{"atlasAWSAccountArn":"arn:aws:iam::299602853325:root","atlasAssumedRoleExternalId":"2e33929b-ec7a-438f-b7f6-5b2007a96402","authorizedDate":null,"createdDate":"2025-07-22T05:12:55Z","featureUsages":[],"iamAssumedRoleArn":null,"providerName":"AWS","roleId":"687f1dd7a799aa2ae9e80c20"}],"azureServicePrincipals":[],"gcpServiceAccounts":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost new file mode 100644 index 0000000000..7501b4e2d5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAccessRoles/List/GET_api_atlas_v2_groups_68824bdab448981053346468_cloudProviderAccess_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 353 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:07 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderAccessResource::getCloudProviderAccess +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIamRoles":[{"atlasAWSAccountArn":"arn:aws:iam::299602853325:root","atlasAssumedRoleExternalId":"092f7e89-2a2e-44ee-b91e-ba7379b98ba6","authorizedDate":null,"createdDate":"2025-07-24T15:06:06Z","featureUsages":[],"iamAssumedRoleArn":null,"providerName":"AWS","roleId":"68824bdeb4489810533464d7"}],"azureServicePrincipals":[],"gcpServiceAccounts":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAccessRoles/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAccessRoles/POST_api_atlas_v2_groups_1.snaphost index 125e5425ce..debcd1c500 100644 --- a/test/e2e/testdata/.snapshots/TestAccessRoles/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAccessRoles/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1073 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:53 GMT +Date: Thu, 24 Jul 2025 15:06:02 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1674 +X-Envoy-Upstream-Service-Time: 3770 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:54Z","id":"687f1dd544f1ab3f84231adb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dd544f1ab3f84231adb/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessRoles-e2e-666","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:06Z","id":"68824bdab448981053346468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bdab448981053346468/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"accessRoles-e2e-673","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost index 4c018b7ea7..0b139d0cd2 100644 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 640 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:01 GMT -Location: http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73 +Date: Thu, 24 Jul 2025 15:06:12 GMT +Location: http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 215 +X-Envoy-Upstream-Service-Time: 244 X-Frame-Options: DENY X-Java-Method: ApiAlertConfigsResource::addAlertConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"created":"2025-07-22T05:13:01Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddd44f1ab3f84231b6e","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:01Z"} \ No newline at end of file +{"created":"2025-07-24T15:06:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be442be0f23307f3f60","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:12Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost deleted file mode 100644 index efbae3b563..0000000000 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAlertConfigsResource::deleteAlertConfig -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost new file mode 100644 index 0000000000..7274fa00cc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:15 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAlertConfigsResource::deleteAlertConfig +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost deleted file mode 100644 index 382cdf63e4..0000000000 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 640 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 72 -X-Frame-Options: DENY -X-Java-Method: ApiAlertConfigsResource::getAlertConfig -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"created":"2025-07-22T05:13:01Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddd44f1ab3f84231b6e","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:01Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost new file mode 100644 index 0000000000..cf0b1688c2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 640 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:13 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiAlertConfigsResource::getAlertConfig +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"created":"2025-07-24T15:06:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be442be0f23307f3f60","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:12Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost index 7b05477be9..f9300bd3b8 100644 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 47663 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:02 GMT +Date: Thu, 24 Jul 2025 15:06:13 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 362 +X-Envoy-Upstream-Service-Time: 395 X-Frame-Options: DENY X-Java-Method: ApiAlertConfigsResource::getAllAlertConfigs X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce06","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce06","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27d9","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":1,"units":"HOURS"},"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce07","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce07","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27da","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CLUSTER_MONGOS_IS_MISSING","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce08","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce08","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27db","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce09","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce09","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dc","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0a","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"DISK_PARTITION_SPACE_USED_DATA","mode":"AVERAGE","operator":"GREATER_THAN","threshold":90.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dd","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2022-08-05T16:15:37Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1000.0,"units":"RAW"},"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27df","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T16:15:37Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CREDIT_CARD_ABOUT_TO_EXPIRE","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b66955c5b772dcf27e0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0e","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_USER","mode":"AVERAGE","operator":"GREATER_THAN","threshold":95.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0f","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":50.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"HOST_HAS_INDEX_SUGGESTIONS","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce10","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce10","rel":"self"}],"matchers":[],"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce11","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce11","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e4","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T10:23:27Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb59f93fc35705f337179","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2881","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-02T11:58:27Z"},{"created":"2020-07-02T10:24:22Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efdb5d622740a69fb4522fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb5d622740a69fb4522fc","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NETWORK_BYTES_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2882","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-10T08:46:29Z"},{"created":"2020-07-10T12:35:00Z","enabled":true,"eventTypeName":"ONLINE_ARCHIVE_INSUFFICIENT_INDEXES_CHECK","groupId":"b0123456789abcdef012345b","id":"5f086074cf7bf723975cb9ae","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f086074cf7bf723975cb9ae","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":360,"notifierId":"63698b6a955c5b772dcfca4d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T12:35:00Z"},{"created":"2020-07-10T18:58:43Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08ba63ac91e400d4e19397","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08ba63ac91e400d4e19397","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd66","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T18:58:43Z"},{"created":"2020-07-10T19:06:22Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08bc2eac91e400d4e196cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08bc2eac91e400d4e196cb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd73","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T19:06:22Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b1","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b6f955c5b772dd07f4b","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-23T20:59:46Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"5f19fa421b9fb701840031da","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f19fa421b9fb701840031da","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b72955c5b772dd0d5a1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2020-07-23T20:59:46Z"},{"created":"2020-07-28T16:55:10Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f20586e4ace3c78da67d821","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f20586e4ace3c78da67d821","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7e955c5b772dd2c589","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-28T16:55:10Z"},{"created":"2020-07-30T16:21:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f22f39a1f72c432da684cad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f22f39a1f72c432da684cad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7f955c5b772dd2f70d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-30T16:21:46Z"},{"created":"2020-08-13T10:17:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f351327b21554136479fbba","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f351327b21554136479fbba","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b86955c5b772dd416f0","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-08-13T10:17:11Z"},{"created":"2020-12-16T13:53:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5fda1172647767158c1be6ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5fda1172647767158c1be6ad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698bd4955c5b772de03142","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-12-16T13:53:54Z"},{"created":"2021-09-09T17:03:49Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613a3e7553d02c5bbb31de7a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613a3e7553d02c5bbb31de7a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698cdf955c5b772d0a35bf","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-09T17:03:49Z"},{"created":"2021-09-10T13:19:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b5b4f9f81490b3d76fb23","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b5b4f9f81490b3d76fb23","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a91f9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:19:11Z"},{"created":"2021-09-10T13:50:13Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b62958ec48f1af7520a6d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b62958ec48f1af7520a6d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a9268","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:50:13Z"},{"created":"2021-09-10T14:37:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b6d95fa6f780712c84cb9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b6d95fa6f780712c84cb9","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a937c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T14:37:09Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d98c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d98c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6cf","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d9ac","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d9ac","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.75,"units":"TERABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6f2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-12-31T22:21:24Z","enabled":true,"eventTypeName":"HOST_MONGOT_CRASHING_OOM","groupId":"b0123456789abcdef012345b","id":"61cf82641472b33d7802351f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61cf82641472b33d7802351f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d8c955c5b772d221332","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-12-31T22:21:24Z"},{"created":"2022-03-17T10:56:44Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623313ecfd5caa2680f704ee","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623313ecfd5caa2680f704ee","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e08955c5b772d330fbf","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-17T10:56:44Z"},{"created":"2022-03-18T12:49:28Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62347fd81bfe1073af78a5e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62347fd81bfe1073af78a5e2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":460,"notifierId":"63698e0b955c5b772d3365bb","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-18T12:49:51Z"},{"created":"2022-03-22T09:32:26Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"623997aa381b5165dfc20642","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997aa381b5165dfc20642","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698e11955c5b772d3459dc","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:26Z"},{"created":"2022-03-22T09:32:38Z","enabled":true,"eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623997b6c4f2aa666ae90fad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997b6c4f2aa666ae90fad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459dd","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-22T09:32:38Z"},{"created":"2022-03-22T09:32:57Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623997c9c4f2aa666ae90fbc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997c9c4f2aa666ae90fbc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459de","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:57Z"},{"created":"2022-03-22T09:33:03Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"623997cf381b5165dfc206c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997cf381b5165dfc206c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459df","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:33:03Z"},{"created":"2022-04-06T08:31:00Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"624d4fc446be525f6d82e58a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624d4fc446be525f6d82e58a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698f808298ea2106818406","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T08:31:00Z"},{"created":"2022-04-06T15:33:36Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db2d013b80654d0c0d0bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2d013b80654d0c0d0bd","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":2602323,"notifierId":"63698f808298ea21068187d8","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-04-06T15:33:36Z"},{"created":"2022-04-06T15:34:19Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"624db2fb13b80654d0c0d238","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2fb13b80654d0c0d238","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":63333330,"notifierId":"63698f808298ea21068187f5","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:34:19Z"},{"created":"2022-04-06T15:35:01Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db32513b80654d0c0d3a5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db32513b80654d0c0d3a5","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SYSTEM_NETWORK_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":6045555,"notifierId":"63698f808298ea2106818812","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:35:01Z"},{"created":"2022-04-29T09:22:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bae4121daa005b6157418","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bae4121daa005b6157418","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d50f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T09:22:09Z"},{"created":"2022-04-29T10:08:34Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bb92221daa005b6159026","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bb92221daa005b6159026","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d52c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:08:34Z"},{"created":"2022-04-29T10:40:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bc0a69c04061e30583095","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bc0a69c04061e30583095","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d53b","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:40:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec31877","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec31877","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.25,"units":"MILLION_RPU"},"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":720,"notifierId":"636990338298ea21069984b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec318d6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec318d6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"MILLION_RPU"},"notifications":[{"delayMin":5,"emailEnabled":true,"intervalMin":120,"notifierId":"636990338298ea21069984e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-06-22T12:24:31Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"62b309ff9494ea7a235474ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62b309ff9494ea7a235474ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"636990bc8298ea2106ab9a3a","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2022-06-22T12:24:31Z"},{"created":"2022-08-05T14:13:51Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62ed259f87ddfe64b483cab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62ed259f87ddfe64b483cab6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SEARCH_MAX_NUMBER_OF_LUCENE_DOCS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"BILLION"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"6369910d8298ea2106b683c0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T14:13:51Z"},{"created":"2022-09-06T12:44:27Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631740aba1fc155eb161f82b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631740aba1fc155eb161f82b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991518298ea2106bfa434","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-06T12:44:27Z"},{"created":"2022-09-07T13:12:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631898d6914bcc6f6dcd3acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631898d6914bcc6f6dcd3acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffb9f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:12:54Z"},{"created":"2022-09-07T13:19:00Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189a44914bcc6f6dcd3bd6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189a44914bcc6f6dcd3bd6","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffbb1","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:19:00Z"},{"created":"2022-09-07T13:29:55Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189cd3914bcc6f6dcd40ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189cd3914bcc6f6dcd40ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffc18","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:29:55Z"},{"created":"2023-05-31T21:56:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477c29ecba1c6580e485046","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477c29ecba1c6580e485046","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477c29ecba1c6580e485045","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T21:56:46Z"},{"created":"2023-05-31T22:43:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477cd809570b91de5f660aa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477cd809570b91de5f660aa","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477cd809570b91de5f660a9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T22:43:12Z"},{"created":"2023-05-31T23:32:18Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477d9029344be0937008042","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477d9029344be0937008042","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477d9029344be0937008041","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T23:32:18Z"},{"created":"2023-06-01T00:33:14Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477e74aba2fb53d45ca6ab3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477e74aba2fb53d45ca6ab3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477e74aba2fb53d45ca6ab2","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T00:33:14Z"},{"created":"2023-06-01T09:03:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785eecad331e22c174e525","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785eecad331e22c174e525","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785eecad331e22c174e524","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:03:40Z"},{"created":"2023-06-01T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785f3fad331e22c174e57e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785f3fad331e22c174e57e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785f3fad331e22c174e57d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:05:03Z"},{"created":"2023-06-01T13:47:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478a17a2e15bd6be65a8939","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478a17a2e15bd6be65a8939","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478a17a2e15bd6be65a8938","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T13:47:38Z"},{"created":"2023-06-01T17:51:37Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478daa9beef5d4ae03ef402","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478daa9beef5d4ae03ef402","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478daa9beef5d4ae03ef401","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T17:51:37Z"},{"created":"2023-07-05T16:18:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a597e04bb5e7588325c7bb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a597e04bb5e7588325c7bb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a597e04bb5e7588325c7ba","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-05T16:18:40Z"},{"created":"2023-07-06T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a683bf7e6c1439025e5116","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a683bf7e6c1439025e5116","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a683bf7e6c1439025e5115","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-06T09:05:03Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c75","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c75","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"650c3d7ea774097d42194c76","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c78","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c78","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c79","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEXES_RESTORE_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7f","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec13c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec13c","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec13d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_AUTO_RESUMED","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec141","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec141","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec142","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"SYNC_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec146","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec146","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec147","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"REQUEST_RATE_LIMIT","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec14b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec14b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec14c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"LOG_FORWARDER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec150","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec150","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec151","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_INITIATED","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e065f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e065f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e065e","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_OPLOG_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e06f5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e06f5","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e06f4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_MAX_DISK_SIZE_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e07b8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e07b8","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e07b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0879","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0879","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0878","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e08d2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e08d2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e08d1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0964","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0964","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0963","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e09ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e09ff","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e09fe","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0acb","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0b63","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0b63","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0b62","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0c22","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0c22","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0c21","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0cdf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0cdf","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0cde","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-11-01T19:06:07Z","enabled":true,"eventTypeName":"HOST_MONGOT_STOP_REPLICATION","groupId":"b0123456789abcdef012345b","id":"6725269ff68ca87dfc2427c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6725269ff68ca87dfc2427c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6725269ff68ca87dfc2427c2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-11-01T19:06:07Z"},{"created":"2025-03-14T20:36:53Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49365cf85331863715a72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49365cf85331863715a72","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"687f1dde44f1ab3f84231bd3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:36:53Z"},{"created":"2025-03-14T20:37:19Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d4937fcf8533186375587d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d4937fcf8533186375587d","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":4.0,"units":"GIGABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"687f1dde44f1ab3f84231bd4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:19Z"},{"created":"2025-03-14T20:37:45Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49399cf85331863797681","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49399cf85331863797681","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_OPCOUNTER_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":200.0,"units":"RAW"},"notifications":[{"delayMin":1440,"emailEnabled":true,"intervalMin":360,"notifierId":"687f1dde44f1ab3f84231bd5","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:45Z"},{"created":"2025-06-26T22:01:01Z","enabled":true,"eventTypeName":"CLUSTER_UNBLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc31d1b1bbf1dec43e5e4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc31d1b1bbf1dec43e5e4","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"687f1dde44f1ab3f84231bd6","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:01:01Z"},{"created":"2025-06-26T22:10:50Z","enabled":true,"eventTypeName":"CLUSTER_BLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc56a1b1bbf1dec4ccbc0","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc56a1b1bbf1dec4ccbc0","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"687f1dde44f1ab3f84231bd7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:10:50Z"},{"created":"2025-07-22T05:13:01Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddd44f1ab3f84231b6e","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:01Z"}],"totalCount":89} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce06","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce06","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27d9","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":1,"units":"HOURS"},"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce07","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce07","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27da","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CLUSTER_MONGOS_IS_MISSING","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce08","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce08","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27db","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce09","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce09","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dc","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0a","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"DISK_PARTITION_SPACE_USED_DATA","mode":"AVERAGE","operator":"GREATER_THAN","threshold":90.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dd","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2022-08-05T16:15:37Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1000.0,"units":"RAW"},"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27df","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T16:15:37Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CREDIT_CARD_ABOUT_TO_EXPIRE","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b66955c5b772dcf27e0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0e","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_USER","mode":"AVERAGE","operator":"GREATER_THAN","threshold":95.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0f","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":50.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"HOST_HAS_INDEX_SUGGESTIONS","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce10","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce10","rel":"self"}],"matchers":[],"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce11","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce11","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e4","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T10:23:27Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb59f93fc35705f337179","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2881","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-02T11:58:27Z"},{"created":"2020-07-02T10:24:22Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efdb5d622740a69fb4522fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb5d622740a69fb4522fc","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NETWORK_BYTES_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2882","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-10T08:46:29Z"},{"created":"2020-07-10T12:35:00Z","enabled":true,"eventTypeName":"ONLINE_ARCHIVE_INSUFFICIENT_INDEXES_CHECK","groupId":"b0123456789abcdef012345b","id":"5f086074cf7bf723975cb9ae","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f086074cf7bf723975cb9ae","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":360,"notifierId":"63698b6a955c5b772dcfca4d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T12:35:00Z"},{"created":"2020-07-10T18:58:43Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08ba63ac91e400d4e19397","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08ba63ac91e400d4e19397","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd66","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T18:58:43Z"},{"created":"2020-07-10T19:06:22Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08bc2eac91e400d4e196cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08bc2eac91e400d4e196cb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd73","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T19:06:22Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b1","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b6f955c5b772dd07f4b","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-23T20:59:46Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"5f19fa421b9fb701840031da","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f19fa421b9fb701840031da","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b72955c5b772dd0d5a1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2020-07-23T20:59:46Z"},{"created":"2020-07-28T16:55:10Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f20586e4ace3c78da67d821","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f20586e4ace3c78da67d821","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7e955c5b772dd2c589","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-28T16:55:10Z"},{"created":"2020-07-30T16:21:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f22f39a1f72c432da684cad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f22f39a1f72c432da684cad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7f955c5b772dd2f70d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-30T16:21:46Z"},{"created":"2020-08-13T10:17:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f351327b21554136479fbba","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f351327b21554136479fbba","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b86955c5b772dd416f0","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-08-13T10:17:11Z"},{"created":"2020-12-16T13:53:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5fda1172647767158c1be6ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5fda1172647767158c1be6ad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698bd4955c5b772de03142","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-12-16T13:53:54Z"},{"created":"2021-09-09T17:03:49Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613a3e7553d02c5bbb31de7a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613a3e7553d02c5bbb31de7a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698cdf955c5b772d0a35bf","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-09T17:03:49Z"},{"created":"2021-09-10T13:19:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b5b4f9f81490b3d76fb23","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b5b4f9f81490b3d76fb23","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a91f9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:19:11Z"},{"created":"2021-09-10T13:50:13Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b62958ec48f1af7520a6d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b62958ec48f1af7520a6d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a9268","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:50:13Z"},{"created":"2021-09-10T14:37:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b6d95fa6f780712c84cb9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b6d95fa6f780712c84cb9","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a937c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T14:37:09Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d98c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d98c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6cf","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d9ac","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d9ac","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.75,"units":"TERABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6f2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-12-31T22:21:24Z","enabled":true,"eventTypeName":"HOST_MONGOT_CRASHING_OOM","groupId":"b0123456789abcdef012345b","id":"61cf82641472b33d7802351f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61cf82641472b33d7802351f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d8c955c5b772d221332","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-12-31T22:21:24Z"},{"created":"2022-03-17T10:56:44Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623313ecfd5caa2680f704ee","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623313ecfd5caa2680f704ee","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e08955c5b772d330fbf","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-17T10:56:44Z"},{"created":"2022-03-18T12:49:28Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62347fd81bfe1073af78a5e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62347fd81bfe1073af78a5e2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":460,"notifierId":"63698e0b955c5b772d3365bb","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-18T12:49:51Z"},{"created":"2022-03-22T09:32:26Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"623997aa381b5165dfc20642","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997aa381b5165dfc20642","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698e11955c5b772d3459dc","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:26Z"},{"created":"2022-03-22T09:32:38Z","enabled":true,"eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623997b6c4f2aa666ae90fad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997b6c4f2aa666ae90fad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459dd","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-22T09:32:38Z"},{"created":"2022-03-22T09:32:57Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623997c9c4f2aa666ae90fbc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997c9c4f2aa666ae90fbc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459de","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:57Z"},{"created":"2022-03-22T09:33:03Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"623997cf381b5165dfc206c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997cf381b5165dfc206c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459df","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:33:03Z"},{"created":"2022-04-06T08:31:00Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"624d4fc446be525f6d82e58a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624d4fc446be525f6d82e58a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698f808298ea2106818406","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T08:31:00Z"},{"created":"2022-04-06T15:33:36Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db2d013b80654d0c0d0bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2d013b80654d0c0d0bd","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":2602323,"notifierId":"63698f808298ea21068187d8","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-04-06T15:33:36Z"},{"created":"2022-04-06T15:34:19Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"624db2fb13b80654d0c0d238","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2fb13b80654d0c0d238","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":63333330,"notifierId":"63698f808298ea21068187f5","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:34:19Z"},{"created":"2022-04-06T15:35:01Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db32513b80654d0c0d3a5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db32513b80654d0c0d3a5","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SYSTEM_NETWORK_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":6045555,"notifierId":"63698f808298ea2106818812","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:35:01Z"},{"created":"2022-04-29T09:22:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bae4121daa005b6157418","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bae4121daa005b6157418","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d50f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T09:22:09Z"},{"created":"2022-04-29T10:08:34Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bb92221daa005b6159026","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bb92221daa005b6159026","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d52c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:08:34Z"},{"created":"2022-04-29T10:40:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bc0a69c04061e30583095","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bc0a69c04061e30583095","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d53b","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:40:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec31877","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec31877","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.25,"units":"MILLION_RPU"},"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":720,"notifierId":"636990338298ea21069984b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec318d6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec318d6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"MILLION_RPU"},"notifications":[{"delayMin":5,"emailEnabled":true,"intervalMin":120,"notifierId":"636990338298ea21069984e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-06-22T12:24:31Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"62b309ff9494ea7a235474ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62b309ff9494ea7a235474ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"636990bc8298ea2106ab9a3a","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2022-06-22T12:24:31Z"},{"created":"2022-08-05T14:13:51Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62ed259f87ddfe64b483cab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62ed259f87ddfe64b483cab6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SEARCH_MAX_NUMBER_OF_LUCENE_DOCS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"BILLION"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"6369910d8298ea2106b683c0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T14:13:51Z"},{"created":"2022-09-06T12:44:27Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631740aba1fc155eb161f82b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631740aba1fc155eb161f82b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991518298ea2106bfa434","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-06T12:44:27Z"},{"created":"2022-09-07T13:12:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631898d6914bcc6f6dcd3acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631898d6914bcc6f6dcd3acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffb9f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:12:54Z"},{"created":"2022-09-07T13:19:00Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189a44914bcc6f6dcd3bd6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189a44914bcc6f6dcd3bd6","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffbb1","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:19:00Z"},{"created":"2022-09-07T13:29:55Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189cd3914bcc6f6dcd40ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189cd3914bcc6f6dcd40ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffc18","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:29:55Z"},{"created":"2023-05-31T21:56:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477c29ecba1c6580e485046","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477c29ecba1c6580e485046","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477c29ecba1c6580e485045","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T21:56:46Z"},{"created":"2023-05-31T22:43:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477cd809570b91de5f660aa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477cd809570b91de5f660aa","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477cd809570b91de5f660a9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T22:43:12Z"},{"created":"2023-05-31T23:32:18Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477d9029344be0937008042","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477d9029344be0937008042","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477d9029344be0937008041","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T23:32:18Z"},{"created":"2023-06-01T00:33:14Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477e74aba2fb53d45ca6ab3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477e74aba2fb53d45ca6ab3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477e74aba2fb53d45ca6ab2","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T00:33:14Z"},{"created":"2023-06-01T09:03:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785eecad331e22c174e525","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785eecad331e22c174e525","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785eecad331e22c174e524","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:03:40Z"},{"created":"2023-06-01T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785f3fad331e22c174e57e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785f3fad331e22c174e57e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785f3fad331e22c174e57d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:05:03Z"},{"created":"2023-06-01T13:47:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478a17a2e15bd6be65a8939","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478a17a2e15bd6be65a8939","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478a17a2e15bd6be65a8938","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T13:47:38Z"},{"created":"2023-06-01T17:51:37Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478daa9beef5d4ae03ef402","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478daa9beef5d4ae03ef402","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478daa9beef5d4ae03ef401","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T17:51:37Z"},{"created":"2023-07-05T16:18:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a597e04bb5e7588325c7bb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a597e04bb5e7588325c7bb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a597e04bb5e7588325c7ba","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-05T16:18:40Z"},{"created":"2023-07-06T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a683bf7e6c1439025e5116","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a683bf7e6c1439025e5116","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a683bf7e6c1439025e5115","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-06T09:05:03Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c75","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c75","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"650c3d7ea774097d42194c76","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c78","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c78","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c79","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEXES_RESTORE_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7f","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec13c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec13c","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec13d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_AUTO_RESUMED","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec141","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec141","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec142","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"SYNC_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec146","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec146","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec147","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"REQUEST_RATE_LIMIT","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec14b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec14b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec14c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"LOG_FORWARDER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec150","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec150","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec151","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_INITIATED","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e065f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e065f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e065e","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_OPLOG_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e06f5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e06f5","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e06f4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_MAX_DISK_SIZE_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e07b8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e07b8","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e07b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0879","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0879","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0878","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e08d2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e08d2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e08d1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0964","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0964","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0963","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e09ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e09ff","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e09fe","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0acb","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0b63","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0b63","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0b62","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0c22","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0c22","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0c21","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0cdf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0cdf","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0cde","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-11-01T19:06:07Z","enabled":true,"eventTypeName":"HOST_MONGOT_STOP_REPLICATION","groupId":"b0123456789abcdef012345b","id":"6725269ff68ca87dfc2427c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6725269ff68ca87dfc2427c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6725269ff68ca87dfc2427c2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-11-01T19:06:07Z"},{"created":"2025-03-14T20:36:53Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49365cf85331863715a72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49365cf85331863715a72","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"68824be542be0f23307f3fc0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:36:53Z"},{"created":"2025-03-14T20:37:19Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d4937fcf8533186375587d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d4937fcf8533186375587d","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":4.0,"units":"GIGABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"68824be542be0f23307f3fc1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:19Z"},{"created":"2025-03-14T20:37:45Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49399cf85331863797681","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49399cf85331863797681","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_OPCOUNTER_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":200.0,"units":"RAW"},"notifications":[{"delayMin":1440,"emailEnabled":true,"intervalMin":360,"notifierId":"68824be542be0f23307f3fc2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:45Z"},{"created":"2025-06-26T22:01:01Z","enabled":true,"eventTypeName":"CLUSTER_UNBLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc31d1b1bbf1dec43e5e4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc31d1b1bbf1dec43e5e4","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"68824be542be0f23307f3fc3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:01:01Z"},{"created":"2025-06-26T22:10:50Z","enabled":true,"eventTypeName":"CLUSTER_BLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc56a1b1bbf1dec4ccbc0","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc56a1b1bbf1dec4ccbc0","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"68824be542be0f23307f3fc4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:10:50Z"},{"created":"2025-07-24T15:06:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be442be0f23307f3f60","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:12Z"}],"totalCount":89} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost index 41cb5935fd..21f98114ce 100644 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 47663 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:02 GMT +Date: Thu, 24 Jul 2025 15:06:13 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 320 +X-Envoy-Upstream-Service-Time: 357 X-Frame-Options: DENY X-Java-Method: ApiAlertConfigsResource::getAllAlertConfigs X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce06","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce06","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27d9","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":1,"units":"HOURS"},"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce07","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce07","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27da","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CLUSTER_MONGOS_IS_MISSING","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce08","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce08","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27db","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce09","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce09","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dc","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0a","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"DISK_PARTITION_SPACE_USED_DATA","mode":"AVERAGE","operator":"GREATER_THAN","threshold":90.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dd","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2022-08-05T16:15:37Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1000.0,"units":"RAW"},"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27df","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T16:15:37Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CREDIT_CARD_ABOUT_TO_EXPIRE","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b66955c5b772dcf27e0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0e","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_USER","mode":"AVERAGE","operator":"GREATER_THAN","threshold":95.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0f","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":50.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"HOST_HAS_INDEX_SUGGESTIONS","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce10","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce10","rel":"self"}],"matchers":[],"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce11","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce11","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e4","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T10:23:27Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb59f93fc35705f337179","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2881","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-02T11:58:27Z"},{"created":"2020-07-02T10:24:22Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efdb5d622740a69fb4522fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb5d622740a69fb4522fc","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NETWORK_BYTES_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2882","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-10T08:46:29Z"},{"created":"2020-07-10T12:35:00Z","enabled":true,"eventTypeName":"ONLINE_ARCHIVE_INSUFFICIENT_INDEXES_CHECK","groupId":"b0123456789abcdef012345b","id":"5f086074cf7bf723975cb9ae","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f086074cf7bf723975cb9ae","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":360,"notifierId":"63698b6a955c5b772dcfca4d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T12:35:00Z"},{"created":"2020-07-10T18:58:43Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08ba63ac91e400d4e19397","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08ba63ac91e400d4e19397","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd66","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T18:58:43Z"},{"created":"2020-07-10T19:06:22Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08bc2eac91e400d4e196cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08bc2eac91e400d4e196cb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd73","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T19:06:22Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b1","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b6f955c5b772dd07f4b","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-23T20:59:46Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"5f19fa421b9fb701840031da","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f19fa421b9fb701840031da","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b72955c5b772dd0d5a1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2020-07-23T20:59:46Z"},{"created":"2020-07-28T16:55:10Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f20586e4ace3c78da67d821","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f20586e4ace3c78da67d821","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7e955c5b772dd2c589","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-28T16:55:10Z"},{"created":"2020-07-30T16:21:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f22f39a1f72c432da684cad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f22f39a1f72c432da684cad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7f955c5b772dd2f70d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-30T16:21:46Z"},{"created":"2020-08-13T10:17:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f351327b21554136479fbba","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f351327b21554136479fbba","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b86955c5b772dd416f0","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-08-13T10:17:11Z"},{"created":"2020-12-16T13:53:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5fda1172647767158c1be6ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5fda1172647767158c1be6ad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698bd4955c5b772de03142","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-12-16T13:53:54Z"},{"created":"2021-09-09T17:03:49Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613a3e7553d02c5bbb31de7a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613a3e7553d02c5bbb31de7a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698cdf955c5b772d0a35bf","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-09T17:03:49Z"},{"created":"2021-09-10T13:19:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b5b4f9f81490b3d76fb23","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b5b4f9f81490b3d76fb23","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a91f9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:19:11Z"},{"created":"2021-09-10T13:50:13Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b62958ec48f1af7520a6d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b62958ec48f1af7520a6d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a9268","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:50:13Z"},{"created":"2021-09-10T14:37:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b6d95fa6f780712c84cb9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b6d95fa6f780712c84cb9","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a937c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T14:37:09Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d98c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d98c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6cf","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d9ac","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d9ac","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.75,"units":"TERABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6f2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-12-31T22:21:24Z","enabled":true,"eventTypeName":"HOST_MONGOT_CRASHING_OOM","groupId":"b0123456789abcdef012345b","id":"61cf82641472b33d7802351f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61cf82641472b33d7802351f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d8c955c5b772d221332","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-12-31T22:21:24Z"},{"created":"2022-03-17T10:56:44Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623313ecfd5caa2680f704ee","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623313ecfd5caa2680f704ee","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e08955c5b772d330fbf","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-17T10:56:44Z"},{"created":"2022-03-18T12:49:28Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62347fd81bfe1073af78a5e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62347fd81bfe1073af78a5e2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":460,"notifierId":"63698e0b955c5b772d3365bb","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-18T12:49:51Z"},{"created":"2022-03-22T09:32:26Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"623997aa381b5165dfc20642","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997aa381b5165dfc20642","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698e11955c5b772d3459dc","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:26Z"},{"created":"2022-03-22T09:32:38Z","enabled":true,"eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623997b6c4f2aa666ae90fad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997b6c4f2aa666ae90fad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459dd","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-22T09:32:38Z"},{"created":"2022-03-22T09:32:57Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623997c9c4f2aa666ae90fbc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997c9c4f2aa666ae90fbc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459de","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:57Z"},{"created":"2022-03-22T09:33:03Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"623997cf381b5165dfc206c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997cf381b5165dfc206c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459df","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:33:03Z"},{"created":"2022-04-06T08:31:00Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"624d4fc446be525f6d82e58a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624d4fc446be525f6d82e58a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698f808298ea2106818406","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T08:31:00Z"},{"created":"2022-04-06T15:33:36Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db2d013b80654d0c0d0bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2d013b80654d0c0d0bd","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":2602323,"notifierId":"63698f808298ea21068187d8","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-04-06T15:33:36Z"},{"created":"2022-04-06T15:34:19Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"624db2fb13b80654d0c0d238","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2fb13b80654d0c0d238","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":63333330,"notifierId":"63698f808298ea21068187f5","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:34:19Z"},{"created":"2022-04-06T15:35:01Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db32513b80654d0c0d3a5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db32513b80654d0c0d3a5","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SYSTEM_NETWORK_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":6045555,"notifierId":"63698f808298ea2106818812","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:35:01Z"},{"created":"2022-04-29T09:22:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bae4121daa005b6157418","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bae4121daa005b6157418","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d50f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T09:22:09Z"},{"created":"2022-04-29T10:08:34Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bb92221daa005b6159026","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bb92221daa005b6159026","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d52c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:08:34Z"},{"created":"2022-04-29T10:40:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bc0a69c04061e30583095","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bc0a69c04061e30583095","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d53b","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:40:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec31877","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec31877","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.25,"units":"MILLION_RPU"},"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":720,"notifierId":"636990338298ea21069984b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec318d6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec318d6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"MILLION_RPU"},"notifications":[{"delayMin":5,"emailEnabled":true,"intervalMin":120,"notifierId":"636990338298ea21069984e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-06-22T12:24:31Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"62b309ff9494ea7a235474ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62b309ff9494ea7a235474ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"636990bc8298ea2106ab9a3a","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2022-06-22T12:24:31Z"},{"created":"2022-08-05T14:13:51Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62ed259f87ddfe64b483cab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62ed259f87ddfe64b483cab6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SEARCH_MAX_NUMBER_OF_LUCENE_DOCS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"BILLION"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"6369910d8298ea2106b683c0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T14:13:51Z"},{"created":"2022-09-06T12:44:27Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631740aba1fc155eb161f82b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631740aba1fc155eb161f82b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991518298ea2106bfa434","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-06T12:44:27Z"},{"created":"2022-09-07T13:12:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631898d6914bcc6f6dcd3acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631898d6914bcc6f6dcd3acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffb9f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:12:54Z"},{"created":"2022-09-07T13:19:00Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189a44914bcc6f6dcd3bd6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189a44914bcc6f6dcd3bd6","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffbb1","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:19:00Z"},{"created":"2022-09-07T13:29:55Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189cd3914bcc6f6dcd40ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189cd3914bcc6f6dcd40ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffc18","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:29:55Z"},{"created":"2023-05-31T21:56:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477c29ecba1c6580e485046","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477c29ecba1c6580e485046","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477c29ecba1c6580e485045","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T21:56:46Z"},{"created":"2023-05-31T22:43:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477cd809570b91de5f660aa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477cd809570b91de5f660aa","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477cd809570b91de5f660a9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T22:43:12Z"},{"created":"2023-05-31T23:32:18Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477d9029344be0937008042","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477d9029344be0937008042","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477d9029344be0937008041","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T23:32:18Z"},{"created":"2023-06-01T00:33:14Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477e74aba2fb53d45ca6ab3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477e74aba2fb53d45ca6ab3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477e74aba2fb53d45ca6ab2","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T00:33:14Z"},{"created":"2023-06-01T09:03:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785eecad331e22c174e525","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785eecad331e22c174e525","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785eecad331e22c174e524","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:03:40Z"},{"created":"2023-06-01T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785f3fad331e22c174e57e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785f3fad331e22c174e57e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785f3fad331e22c174e57d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:05:03Z"},{"created":"2023-06-01T13:47:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478a17a2e15bd6be65a8939","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478a17a2e15bd6be65a8939","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478a17a2e15bd6be65a8938","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T13:47:38Z"},{"created":"2023-06-01T17:51:37Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478daa9beef5d4ae03ef402","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478daa9beef5d4ae03ef402","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478daa9beef5d4ae03ef401","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T17:51:37Z"},{"created":"2023-07-05T16:18:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a597e04bb5e7588325c7bb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a597e04bb5e7588325c7bb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a597e04bb5e7588325c7ba","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-05T16:18:40Z"},{"created":"2023-07-06T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a683bf7e6c1439025e5116","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a683bf7e6c1439025e5116","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a683bf7e6c1439025e5115","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-06T09:05:03Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c75","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c75","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"650c3d7ea774097d42194c76","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c78","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c78","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c79","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEXES_RESTORE_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7f","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec13c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec13c","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec13d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_AUTO_RESUMED","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec141","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec141","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec142","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"SYNC_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec146","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec146","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec147","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"REQUEST_RATE_LIMIT","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec14b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec14b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec14c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"LOG_FORWARDER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec150","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec150","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec151","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_INITIATED","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e065f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e065f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e065e","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_OPLOG_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e06f5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e06f5","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e06f4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_MAX_DISK_SIZE_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e07b8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e07b8","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e07b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0879","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0879","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0878","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e08d2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e08d2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e08d1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0964","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0964","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0963","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e09ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e09ff","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e09fe","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0acb","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0b63","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0b63","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0b62","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0c22","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0c22","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0c21","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0cdf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0cdf","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0cde","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-11-01T19:06:07Z","enabled":true,"eventTypeName":"HOST_MONGOT_STOP_REPLICATION","groupId":"b0123456789abcdef012345b","id":"6725269ff68ca87dfc2427c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6725269ff68ca87dfc2427c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6725269ff68ca87dfc2427c2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-11-01T19:06:07Z"},{"created":"2025-03-14T20:36:53Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49365cf85331863715a72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49365cf85331863715a72","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"687f1ddea799aa2ae9e80cb7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:36:53Z"},{"created":"2025-03-14T20:37:19Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d4937fcf8533186375587d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d4937fcf8533186375587d","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":4.0,"units":"GIGABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"687f1ddea799aa2ae9e80cb8","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:19Z"},{"created":"2025-03-14T20:37:45Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49399cf85331863797681","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49399cf85331863797681","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_OPCOUNTER_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":200.0,"units":"RAW"},"notifications":[{"delayMin":1440,"emailEnabled":true,"intervalMin":360,"notifierId":"687f1ddea799aa2ae9e80cb9","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:45Z"},{"created":"2025-06-26T22:01:01Z","enabled":true,"eventTypeName":"CLUSTER_UNBLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc31d1b1bbf1dec43e5e4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc31d1b1bbf1dec43e5e4","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"687f1ddea799aa2ae9e80cba","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:01:01Z"},{"created":"2025-06-26T22:10:50Z","enabled":true,"eventTypeName":"CLUSTER_BLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc56a1b1bbf1dec4ccbc0","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc56a1b1bbf1dec4ccbc0","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"687f1ddea799aa2ae9e80cbb","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:10:50Z"},{"created":"2025-07-22T05:13:01Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddd44f1ab3f84231b6e","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:01Z"}],"totalCount":89} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce06","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce06","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27d9","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":1,"units":"HOURS"},"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce07","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce07","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27da","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CLUSTER_MONGOS_IS_MISSING","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce08","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce08","rel":"self"}],"matchers":[],"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27db","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce09","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce09","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dc","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0a","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"DISK_PARTITION_SPACE_USED_DATA","mode":"AVERAGE","operator":"GREATER_THAN","threshold":90.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27dd","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2022-08-05T16:15:37Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1000.0,"units":"RAW"},"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27df","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T16:15:37Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"CREDIT_CARD_ABOUT_TO_EXPIRE","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b66955c5b772dcf27e0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0e","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_USER","mode":"AVERAGE","operator":"GREATER_THAN","threshold":95.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce0f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce0f","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":50.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"HOST_HAS_INDEX_SUGGESTIONS","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce10","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce10","rel":"self"}],"matchers":[],"notifications":[{"delayMin":10,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T09:19:42Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"5efda6aea3f2ed2e7dd6ce11","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efda6aea3f2ed2e7dd6ce11","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b66955c5b772dcf27e4","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-02T09:19:42Z"},{"created":"2020-07-02T10:23:27Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb59f93fc35705f337179","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2881","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-02T11:58:27Z"},{"created":"2020-07-02T10:24:22Z","enabled":false,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"5efdb5d622740a69fb4522fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb5d622740a69fb4522fc","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"NETWORK_BYTES_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698b66955c5b772dcf2882","smsEnabled":true,"typeName":"GROUP"}],"updated":"2020-07-10T08:46:29Z"},{"created":"2020-07-10T12:35:00Z","enabled":true,"eventTypeName":"ONLINE_ARCHIVE_INSUFFICIENT_INDEXES_CHECK","groupId":"b0123456789abcdef012345b","id":"5f086074cf7bf723975cb9ae","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f086074cf7bf723975cb9ae","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":360,"notifierId":"63698b6a955c5b772dcfca4d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T12:35:00Z"},{"created":"2020-07-10T18:58:43Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08ba63ac91e400d4e19397","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08ba63ac91e400d4e19397","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd66","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T18:58:43Z"},{"created":"2020-07-10T19:06:22Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f08bc2eac91e400d4e196cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f08bc2eac91e400d4e196cb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b6a955c5b772dcfcd73","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-10T19:06:22Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b1","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698b6f955c5b772dd07f4b","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-20T12:14:37Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"5f158aada70f3e171931c0b3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f158aada70f3e171931c0b3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1,"notifierId":"63698b6f955c5b772dd07f4d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-20T12:14:37Z"},{"created":"2020-07-23T20:59:46Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"5f19fa421b9fb701840031da","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f19fa421b9fb701840031da","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"63698b72955c5b772dd0d5a1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2020-07-23T20:59:46Z"},{"created":"2020-07-28T16:55:10Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f20586e4ace3c78da67d821","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f20586e4ace3c78da67d821","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7e955c5b772dd2c589","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-28T16:55:10Z"},{"created":"2020-07-30T16:21:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f22f39a1f72c432da684cad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f22f39a1f72c432da684cad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b7f955c5b772dd2f70d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-07-30T16:21:46Z"},{"created":"2020-08-13T10:17:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5f351327b21554136479fbba","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5f351327b21554136479fbba","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698b86955c5b772dd416f0","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-08-13T10:17:11Z"},{"created":"2020-12-16T13:53:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"5fda1172647767158c1be6ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5fda1172647767158c1be6ad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698bd4955c5b772de03142","smsEnabled":false,"typeName":"GROUP"}],"updated":"2020-12-16T13:53:54Z"},{"created":"2021-09-09T17:03:49Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613a3e7553d02c5bbb31de7a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613a3e7553d02c5bbb31de7a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698cdf955c5b772d0a35bf","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-09T17:03:49Z"},{"created":"2021-09-10T13:19:11Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b5b4f9f81490b3d76fb23","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b5b4f9f81490b3d76fb23","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a91f9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:19:11Z"},{"created":"2021-09-10T13:50:13Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b62958ec48f1af7520a6d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b62958ec48f1af7520a6d","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a9268","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T13:50:13Z"},{"created":"2021-09-10T14:37:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"613b6d95fa6f780712c84cb9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/613b6d95fa6f780712c84cb9","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698ce2955c5b772d0a937c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-09-10T14:37:09Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d98c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d98c","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6cf","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-10-20T19:12:56Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"61706a381ae3ac5354c0d9ac","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61706a381ae3ac5354c0d9ac","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.75,"units":"TERABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d17955c5b772d12f6f2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-10-20T19:12:56Z"},{"created":"2021-12-31T22:21:24Z","enabled":true,"eventTypeName":"HOST_MONGOT_CRASHING_OOM","groupId":"b0123456789abcdef012345b","id":"61cf82641472b33d7802351f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/61cf82641472b33d7802351f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"63698d8c955c5b772d221332","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2021-12-31T22:21:24Z"},{"created":"2022-03-17T10:56:44Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623313ecfd5caa2680f704ee","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623313ecfd5caa2680f704ee","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e08955c5b772d330fbf","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-17T10:56:44Z"},{"created":"2022-03-18T12:49:28Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62347fd81bfe1073af78a5e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62347fd81bfe1073af78a5e2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":460,"notifierId":"63698e0b955c5b772d3365bb","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-18T12:49:51Z"},{"created":"2022-03-22T09:32:26Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"623997aa381b5165dfc20642","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997aa381b5165dfc20642","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698e11955c5b772d3459dc","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:26Z"},{"created":"2022-03-22T09:32:38Z","enabled":true,"eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623997b6c4f2aa666ae90fad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997b6c4f2aa666ae90fad","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459dd","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-03-22T09:32:38Z"},{"created":"2022-03-22T09:32:57Z","enabled":true,"eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"623997c9c4f2aa666ae90fbc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997c9c4f2aa666ae90fbc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459de","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:32:57Z"},{"created":"2022-03-22T09:33:03Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"623997cf381b5165dfc206c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/623997cf381b5165dfc206c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":60,"notifierId":"63698e11955c5b772d3459df","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-03-22T09:33:03Z"},{"created":"2022-04-06T08:31:00Z","enabled":true,"eventTypeName":"JOINED_GROUP","groupId":"b0123456789abcdef012345b","id":"624d4fc446be525f6d82e58a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624d4fc446be525f6d82e58a","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":5,"notifierId":"63698f808298ea2106818406","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T08:31:00Z"},{"created":"2022-04-06T15:33:36Z","enabled":true,"eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db2d013b80654d0c0d0bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2d013b80654d0c0d0bd","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":2602323,"notifierId":"63698f808298ea21068187d8","smsEnabled":true,"typeName":"GROUP"}],"threshold":{"operator":"GREATER_THAN","threshold":0},"updated":"2022-04-06T15:33:36Z"},{"created":"2022-04-06T15:34:19Z","enabled":true,"groupId":"b0123456789abcdef012345b","id":"624db2fb13b80654d0c0d238","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db2fb13b80654d0c0d238","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":63333330,"notifierId":"63698f808298ea21068187f5","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:34:19Z"},{"created":"2022-04-06T15:35:01Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"624db32513b80654d0c0d3a5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/624db32513b80654d0c0d3a5","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SYSTEM_NETWORK_IN","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.0,"units":"BYTES"},"notifications":[{"delayMin":0,"emailEnabled":false,"intervalMin":6045555,"notifierId":"63698f808298ea2106818812","smsEnabled":true,"typeName":"GROUP"}],"updated":"2022-04-06T15:35:01Z"},{"created":"2022-04-29T09:22:09Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bae4121daa005b6157418","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bae4121daa005b6157418","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d50f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T09:22:09Z"},{"created":"2022-04-29T10:08:34Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bb92221daa005b6159026","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bb92221daa005b6159026","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d52c","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:08:34Z"},{"created":"2022-04-29T10:40:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"626bc0a69c04061e30583095","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/626bc0a69c04061e30583095","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"63698fa78298ea210686d53b","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-04-29T10:40:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec31877","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec31877","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":0.25,"units":"MILLION_RPU"},"notifications":[{"delayMin":15,"emailEnabled":true,"intervalMin":720,"notifierId":"636990338298ea21069984b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-05-28T13:55:38Z","enabled":true,"eventTypeName":"OUTSIDE_SERVERLESS_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"629229dad0dad669cec318d6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/629229dad0dad669cec318d6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SERVERLESS_TOTAL_READ_UNITS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"MILLION_RPU"},"notifications":[{"delayMin":5,"emailEnabled":true,"intervalMin":120,"notifierId":"636990338298ea21069984e3","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-05-28T13:55:38Z"},{"created":"2022-06-22T12:24:31Z","enabled":true,"eventTypeName":"NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK","groupId":"b0123456789abcdef012345b","id":"62b309ff9494ea7a235474ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62b309ff9494ea7a235474ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":1440,"notifierId":"636990bc8298ea2106ab9a3a","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"threshold":{"operator":"LESS_THAN","threshold":30,"units":"DAYS"},"updated":"2022-06-22T12:24:31Z"},{"created":"2022-08-05T14:13:51Z","enabled":true,"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"62ed259f87ddfe64b483cab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/62ed259f87ddfe64b483cab6","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"SEARCH_MAX_NUMBER_OF_LUCENE_DOCS","mode":"AVERAGE","operator":"GREATER_THAN","threshold":1.0,"units":"BILLION"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"6369910d8298ea2106b683c0","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-08-05T14:13:51Z"},{"created":"2022-09-06T12:44:27Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631740aba1fc155eb161f82b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631740aba1fc155eb161f82b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991518298ea2106bfa434","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-06T12:44:27Z"},{"created":"2022-09-07T13:12:54Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"631898d6914bcc6f6dcd3acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/631898d6914bcc6f6dcd3acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffb9f","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:12:54Z"},{"created":"2022-09-07T13:19:00Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189a44914bcc6f6dcd3bd6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189a44914bcc6f6dcd3bd6","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffbb1","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:19:00Z"},{"created":"2022-09-07T13:29:55Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"63189cd3914bcc6f6dcd40ab","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/63189cd3914bcc6f6dcd40ab","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"636991538298ea2106bffc18","smsEnabled":false,"typeName":"GROUP"}],"updated":"2022-09-07T13:29:55Z"},{"created":"2023-05-31T21:56:46Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477c29ecba1c6580e485046","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477c29ecba1c6580e485046","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477c29ecba1c6580e485045","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T21:56:46Z"},{"created":"2023-05-31T22:43:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477cd809570b91de5f660aa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477cd809570b91de5f660aa","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477cd809570b91de5f660a9","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T22:43:12Z"},{"created":"2023-05-31T23:32:18Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477d9029344be0937008042","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477d9029344be0937008042","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477d9029344be0937008041","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-05-31T23:32:18Z"},{"created":"2023-06-01T00:33:14Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6477e74aba2fb53d45ca6ab3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6477e74aba2fb53d45ca6ab3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6477e74aba2fb53d45ca6ab2","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T00:33:14Z"},{"created":"2023-06-01T09:03:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785eecad331e22c174e525","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785eecad331e22c174e525","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785eecad331e22c174e524","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:03:40Z"},{"created":"2023-06-01T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64785f3fad331e22c174e57e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64785f3fad331e22c174e57e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64785f3fad331e22c174e57d","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T09:05:03Z"},{"created":"2023-06-01T13:47:38Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478a17a2e15bd6be65a8939","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478a17a2e15bd6be65a8939","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478a17a2e15bd6be65a8938","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T13:47:38Z"},{"created":"2023-06-01T17:51:37Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"6478daa9beef5d4ae03ef402","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6478daa9beef5d4ae03ef402","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6478daa9beef5d4ae03ef401","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-06-01T17:51:37Z"},{"created":"2023-07-05T16:18:40Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a597e04bb5e7588325c7bb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a597e04bb5e7588325c7bb","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a597e04bb5e7588325c7ba","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-05T16:18:40Z"},{"created":"2023-07-06T09:05:03Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"64a683bf7e6c1439025e5116","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/64a683bf7e6c1439025e5116","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"64a683bf7e6c1439025e5115","smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-07-06T09:05:03Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_DELETION_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c75","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c75","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"650c3d7ea774097d42194c76","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_COMPLETE","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c78","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c78","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c79","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEX_BUILD_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2023-09-21T12:56:30Z","enabled":true,"eventTypeName":"FTS_INDEXES_RESTORE_FAILED","groupId":"b0123456789abcdef012345b","id":"650c3d7ea774097d42194c7e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/650c3d7ea774097d42194c7e","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"650c3d7ea774097d42194c7f","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2023-09-21T12:56:30Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec13c","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec13c","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec13d","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"TRIGGER_AUTO_RESUMED","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec141","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec141","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec142","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"SYNC_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec146","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec146","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec147","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"REQUEST_RATE_LIMIT","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec14b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec14b","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec14c","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-02-12T18:13:20Z","enabled":true,"eventTypeName":"LOG_FORWARDER_FAILURE","groupId":"b0123456789abcdef012345b","id":"65ca5fc058e7b474420ec150","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/65ca5fc058e7b474420ec150","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"65ca5fc058e7b474420ec151","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-02-12T18:13:20Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_INITIATED","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e065f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e065f","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e065e","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_OPLOG_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e06f5","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e06f5","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e06f4","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"DISK_AUTO_SCALE_MAX_DISK_SIZE_FAIL","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e07b8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e07b8","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e07b7","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0879","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0879","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0878","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_INITIATED_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e08d2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e08d2","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e08d1","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0964","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0964","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0963","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e09ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e09ff","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e09fe","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0acc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0acc","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0acb","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_OPLOG_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0b63","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0b63","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0b62","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_BASE","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0c22","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0c22","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0c21","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-07-25T23:28:57Z","enabled":true,"eventTypeName":"COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_ANALYTICS","groupId":"b0123456789abcdef012345b","id":"66a2dfb958c89268738e0cdf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/66a2dfb958c89268738e0cdf","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"66a2dfb958c89268738e0cde","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-07-25T23:28:57Z"},{"created":"2024-11-01T19:06:07Z","enabled":true,"eventTypeName":"HOST_MONGOT_STOP_REPLICATION","groupId":"b0123456789abcdef012345b","id":"6725269ff68ca87dfc2427c3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/6725269ff68ca87dfc2427c3","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"6725269ff68ca87dfc2427c2","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2024-11-01T19:06:07Z"},{"created":"2025-03-14T20:36:53Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49365cf85331863715a72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49365cf85331863715a72","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_CONNECTIONS_PERCENT","mode":"AVERAGE","operator":"GREATER_THAN","threshold":80.0,"units":"RAW"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"68824be642be0f23307f402e","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:36:53Z"},{"created":"2025-03-14T20:37:19Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d4937fcf8533186375587d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d4937fcf8533186375587d","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_DATA_SIZE_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":4.0,"units":"GIGABYTES"},"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":60,"notifierId":"68824be642be0f23307f402f","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:19Z"},{"created":"2025-03-14T20:37:45Z","enabled":true,"eventTypeName":"OUTSIDE_FLEX_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"67d49399cf85331863797681","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/67d49399cf85331863797681","rel":"self"}],"matchers":[],"metricThreshold":{"metricName":"FLEX_OPCOUNTER_TOTAL","mode":"AVERAGE","operator":"GREATER_THAN","threshold":200.0,"units":"RAW"},"notifications":[{"delayMin":1440,"emailEnabled":true,"intervalMin":360,"notifierId":"68824be642be0f23307f4030","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-03-14T20:37:45Z"},{"created":"2025-06-26T22:01:01Z","enabled":true,"eventTypeName":"CLUSTER_UNBLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc31d1b1bbf1dec43e5e4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc31d1b1bbf1dec43e5e4","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"68824be642be0f23307f4031","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:01:01Z"},{"created":"2025-06-26T22:10:50Z","enabled":true,"eventTypeName":"CLUSTER_BLOCK_WRITE","groupId":"b0123456789abcdef012345b","id":"685dc56a1b1bbf1dec4ccbc0","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/685dc56a1b1bbf1dec4ccbc0","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":0,"notifierId":"68824be642be0f23307f4032","roles":["GROUP_OWNER"],"smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-06-26T22:10:50Z"},{"created":"2025-07-24T15:06:12Z","enabled":true,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be442be0f23307f3f60","smsEnabled":false,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:12Z"}],"totalCount":89} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/List_Matcher_Fields/GET_api_atlas_v2_alertConfigs_matchers_fieldNames_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/List_Matcher_Fields/GET_api_atlas_v2_alertConfigs_matchers_fieldNames_1.snaphost index b365b37350..859ab25ad9 100644 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/List_Matcher_Fields/GET_api_atlas_v2_alertConfigs_matchers_fieldNames_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/List_Matcher_Fields/GET_api_atlas_v2_alertConfigs_matchers_fieldNames_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 115 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:04 GMT +Date: Thu, 24 Jul 2025 15:06:15 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 34 +X-Envoy-Upstream-Service-Time: 21 X-Frame-Options: DENY X-Java-Method: ApiAlertConfigsMatchersResource::getAlertConfigMatchersFieldNames X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none ["CLUSTER_NAME","HOSTNAME","PORT","HOSTNAME_AND_PORT","APPLICATION_ID","REPLICA_SET_NAME","TYPE_NAME","SHARD_NAME"] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost deleted file mode 100644 index 5580d3bad3..0000000000 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 640 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 182 -X-Frame-Options: DENY -X-Java-Method: ApiAlertConfigsResource::putAlertConfig -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"created":"2025-07-22T05:13:01Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddfa799aa2ae9e80cc3","smsEnabled":true,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:03Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost new file mode 100644 index 0000000000..1399029949 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/Update/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 640 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:14 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 179 +X-Frame-Options: DENY +X-Java-Method: ApiAlertConfigsResource::putAlertConfig +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"created":"2025-07-24T15:06:12Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be6b448981053346518","smsEnabled":true,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:14Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost deleted file mode 100644 index f198aac332..0000000000 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_687f1ddd44f1ab3f84231b73_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 640 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAlertConfigsResource::putAlertConfig -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"created":"2025-07-22T05:13:01Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b73","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/687f1ddd44f1ab3f84231b73/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"687f1ddfa799aa2ae9e80cd0","smsEnabled":true,"typeName":"GROUP"}],"updated":"2025-07-22T05:13:03Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost b/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost new file mode 100644 index 0000000000..6762e7a01c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/Update_Setting_using_file_input/PUT_api_atlas_v2_groups_b0123456789abcdef012345b_alertConfigs_68824be442be0f23307f3f65_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 640 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:14 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 146 +X-Frame-Options: DENY +X-Java-Method: ApiAlertConfigsResource::putAlertConfig +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"created":"2025-07-24T15:06:12Z","enabled":false,"eventTypeName":"NO_PRIMARY","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f65","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/68824be442be0f23307f3f65/alerts","rel":"http://localhost:8080/alerts"}],"matchers":[],"notifications":[{"delayMin":0,"emailEnabled":true,"intervalMin":5,"notifierId":"68824be642be0f23307f403c","smsEnabled":true,"typeName":"GROUP"}],"updated":"2025-07-24T15:06:14Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlertConfig/memory.json b/test/e2e/testdata/.snapshots/TestAlertConfig/memory.json index 3b0c98776b..b26dc0720b 100644 --- a/test/e2e/testdata/.snapshots/TestAlertConfig/memory.json +++ b/test/e2e/testdata/.snapshots/TestAlertConfig/memory.json @@ -1 +1 @@ -{"TestAlertConfig/Update_Setting_using_file_input/rand":"PQ=="} \ No newline at end of file +{"TestAlertConfig/Update_Setting_using_file_input/rand":"A0E="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost index c384ea6040..2e1e2d8503 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 889 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:59 GMT +Date: Thu, 24 Jul 2025 15:06:10 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 310 +X-Envoy-Upstream-Service-Time: 357 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource20240530::patchAlert X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"acknowledgedUntil":"2025-07-22T05:12:59Z","acknowledgingUsername":"nmtxqlkl","alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-22T05:12:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-22T05:12:59Z"} \ No newline at end of file +{"acknowledgedUntil":"2025-07-24T15:06:10Z","acknowledgingUsername":"nmtxqlkl","alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T15:06:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T15:06:10Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge_Forever/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge_Forever/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost index 4e38cc9fbf..a8f325e0f2 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge_Forever/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/Acknowledge_Forever/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 889 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:00 GMT +Date: Thu, 24 Jul 2025 15:06:11 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 232 +X-Envoy-Upstream-Service-Time: 290 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource20240530::patchAlert X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"acknowledgedUntil":"2125-08-23T05:12:00Z","acknowledgingUsername":"nmtxqlkl","alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-22T05:13:00Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-22T05:13:00Z"} \ No newline at end of file +{"acknowledgedUntil":"2125-08-25T15:05:11Z","acknowledgingUsername":"nmtxqlkl","alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T15:06:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T15:06:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost index 4fb6b0d01d..9ca2e5e7a0 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 811 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:59 GMT +Date: Thu, 24 Jul 2025 15:06:10 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 78 +X-Envoy-Upstream-Service-Time: 86 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource::getAlert X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-21T18:32:27Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-21T18:32:27Z"} \ No newline at end of file +{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T10:24:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T10:24:25Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/List_with_no_status/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/List_with_no_status/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost index 92a73ef49c..d592050751 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/List_with_no_status/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/List_with_no_status/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 69767 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:57 GMT +Date: Thu, 24 Jul 2025 15:06:09 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1093 +X-Envoy-Upstream-Service-Time: 1066 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource::getAllAlerts X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-21T18:32:27Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-21T18:32:27Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5efdfce84deaf5428dea44be","created":"2020-07-02T16:27:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efe0b0097e6ab3f55a5d376","lastNotified":"2020-07-02T16:29:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efe0b0097e6ab3f55a5d376","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xmz5g4-shard-0","resolved":"2020-07-02T16:29:22Z","status":"CLOSED","updated":"2020-07-02T16:29:22Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f071035d0dc8d4bd86168de","created":"2020-07-09T13:40:29Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f071e4dd0dc8d4bd861c4ef","lastNotified":"2020-07-09T13:41:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f071e4dd0dc8d4bd861c4ef","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-mll9nu-shard-0","resolved":"2020-07-09T13:41:13Z","status":"CLOSED","updated":"2020-07-09T13:41:13Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07301f89f31d27b256f893","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e44","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e44","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-10oulw-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07300f89f31d27b256f501","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e46","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e46","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ul7lyr-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f088e7271aeec6fac20210a","created":"2020-07-10T16:51:34Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f089c96089f9828402835bd","lastNotified":"2020-07-10T16:52:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f089c96089f9828402835bd","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-43q3x9-shard-0","resolved":"2020-07-10T16:52:38Z","status":"CLOSED","updated":"2020-07-10T16:52:38Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f08bdcbd206160bb5c33a8c","created":"2020-07-10T20:13:27Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f08cbe70651a576d92584a4","lastNotified":"2020-07-10T20:15:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f08cbe70651a576d92584a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-n32snz-shard-0","resolved":"2020-07-10T20:15:10Z","status":"CLOSED","updated":"2020-07-10T20:15:10Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f0e13ce04f82410686db7a3","created":"2020-07-14T21:21:46Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f0e21ea08c7bf2e36da5c34","lastNotified":"2020-07-14T21:23:07Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f0e21ea08c7bf2e36da5c34","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1to8ri-shard-0","resolved":"2020-07-14T21:22:58Z","status":"CLOSED","updated":"2020-07-14T21:22:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f11c8ee4b49002456c7a7e2","created":"2020-07-17T16:51:22Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f11d70a4b49002456ca8316","lastNotified":"2020-07-17T16:51:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f11d70a4b49002456ca8316","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-g1b1wv-shard-0","resolved":"2020-07-17T16:51:32Z","status":"CLOSED","updated":"2020-07-17T16:51:32Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1707cab28d1d1f1e661c34","created":"2020-07-21T16:20:48Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1715e00d01212070cb7bac","lastNotified":"2020-07-21T16:22:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1715e00d01212070cb7bac","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-cwlya6-shard-0","resolved":"2020-07-21T16:22:16Z","status":"CLOSED","updated":"2020-07-21T16:22:16Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f17119db6dd6f5784522cfa","created":"2020-07-21T17:02:43Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f171fb30afba025e065a28e","lastNotified":"2020-07-21T17:03:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f171fb30afba025e065a28e","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-5i203l-shard-0","resolved":"2020-07-21T17:03:42Z","status":"CLOSED","updated":"2020-07-21T17:03:42Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bbe09297b50c14b2eeb","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e3","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e3","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-8tgdes-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b352a","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e5","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e5","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flxyt7-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b3523","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e7","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c043ww-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f18afdbdf32440a27abb79c","created":"2020-07-22T22:30:04Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f18bdec40f94a3ba156cc29","lastNotified":"2020-07-22T22:32:05Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f18bdec40f94a3ba156cc29","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-urca9f-shard-0","resolved":"2020-07-22T22:31:56Z","status":"CLOSED","updated":"2020-07-22T22:31:56Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1afe24e02fc2661b483493","created":"2020-07-24T16:28:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1b0c3c6ceaa977db7c2020","lastNotified":"2020-07-24T16:30:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1b0c3c6ceaa977db7c2020","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-7baq4v-shard-0","resolved":"2020-07-24T16:29:58Z","status":"CLOSED","updated":"2020-07-24T16:29:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f294bf692329e4200758fed","created":"2020-08-04T12:52:25Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f295a097a7fcf1588a32f85","lastNotified":"2020-08-04T12:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f295a097a7fcf1588a32f85","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-13barc-shard-0","resolved":"2020-08-04T12:53:34Z","status":"CLOSED","updated":"2020-08-04T12:53:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f313f7a8f4523669d3cd930","created":"2020-08-10T13:37:16Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f314d8c11481a3542f228f7","lastNotified":"2020-08-10T13:38:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f314d8c11481a3542f228f7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-wqrsj0-shard-0","resolved":"2020-08-10T13:37:57Z","status":"CLOSED","updated":"2020-08-10T13:37:57Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":20.932485722056025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd14459","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd14459","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":19.060418568482266,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445b","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":32.047727081757834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445d","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445d","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T18:59:02Z","currentValue":{"number":37.28271195480076,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gg6ii8-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3ec7f6b911625dfdb413ab","lastNotified":"2020-08-20T19:00:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ec7f6b911625dfdb413ab","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gg6ii8-shard-0","resolved":"2020-08-20T18:59:56Z","status":"CLOSED","updated":"2020-08-20T18:59:56Z","userAlias":"e2e-cluster-947-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":20.925128583156027,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-vlqsal-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227202","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227202","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-vlqsal-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-369-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":31.68626010286554,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-a4rwnt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227204","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227204","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-a4rwnt-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-975-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:37:30Z","currentValue":{"number":0.7660665811780772,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-hstims-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3efb2a1874502485237cf8","lastNotified":"2020-08-20T22:40:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3efb2a1874502485237cf8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-20T22:40:44Z","status":"CLOSED","updated":"2020-08-20T22:40:44Z","userAlias":"e2e-cluster-379-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f3efb1018745024852372a8","created":"2020-08-20T23:37:06Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f3f0922f9cad35d7728e449","lastNotified":"2020-08-20T23:38:36Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3f0922f9cad35d7728e449","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-hstims-shard-0","resolved":"2020-08-20T23:38:30Z","status":"CLOSED","updated":"2020-08-20T23:38:30Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":0.5932189228481193,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfa","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":3.678862805946244,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfc","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":20.739329523045555,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfe","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfe","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":15.634129647251296,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88accc","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.20331631801955,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acce","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acce","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.631859527538065,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acd0","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acd0","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":48.059072435650855,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1884","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1884","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":47.90469049404316,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1889","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1889","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:54:42Z","currentValue":{"number":28.919901293850874,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e2872ba8e14244d8b2eac","lastNotified":"2020-09-01T10:55:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2872ba8e14244d8b2eac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gco215-shard-0","resolved":"2020-09-01T10:55:42Z","status":"CLOSED","updated":"2020-09-01T10:55:42Z","userAlias":"e2e-cluster-43-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:57:39Z","currentValue":{"number":30.992973926942156,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-zsig7y-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2923ba8e14244d8b6c9e","lastNotified":"2020-09-01T10:59:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2923ba8e14244d8b6c9e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-zsig7y-shard-0","resolved":"2020-09-01T10:59:17Z","status":"CLOSED","updated":"2020-09-01T10:59:17Z","userAlias":"e2e-cluster-596-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":0.21777003484320556,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741b","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":33.20721918298482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741f","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":0.743314346802078,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba4","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":25.992043593086617,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba6","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba6","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":21.370403466473334,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba8","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":47.47918904403867,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748baa","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748baa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":32.60446130654969,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748bae","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748bae","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T10:06:10Z","currentValue":{"number":25.3388332351208,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-8mpzzy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f6e92b9d63e361b300cea","lastNotified":"2020-09-02T10:07:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f6e92b9d63e361b300cea","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T10:06:56Z","status":"CLOSED","updated":"2020-09-02T10:06:56Z","userAlias":"e2e-cluster-343-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:07:09Z","currentValue":{"number":43.54849509524926,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-dw52hh-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4f8aeda78e07056e54417e","lastNotified":"2020-09-02T12:08:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8aeda78e07056e54417e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:08:21Z","status":"CLOSED","updated":"2020-09-02T12:08:21Z","userAlias":"e2e-cluster-522-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:26:12Z","currentValue":{"number":27.550850283427806,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4f8f64a78e07056e55d71e","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f64a78e07056e55d71e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:27:02Z","currentValue":{"number":17.531111667919482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f8f96a78e07056e55f5a4","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f96a78e07056e55f5a4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c7jcsa-shard-0","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":37.50703097035913,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc7","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":23.622647906424817,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc9","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f4f97e13efd027d4f4e6019","created":"2020-09-02T14:03:03Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f4fa617283a657fb10873fb","lastNotified":"2020-09-02T14:03:44Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa617283a657fb10873fb","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ucr7s9-shard-0","resolved":"2020-09-02T14:03:34Z","status":"CLOSED","updated":"2020-09-02T14:03:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":4.455238254752533,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb44","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb44","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":7.225910877679781,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb46","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb46","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":49.10926769565512,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nbnszb-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa1","lastNotified":"2020-09-03T12:03:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-nbnszb-shard-0","resolved":"2020-09-03T12:02:59Z","status":"CLOSED","updated":"2020-09-03T12:02:59Z","userAlias":"e2e-cluster-328-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":0.6601597753785473,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa3","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.2116249143506526,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa8","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.4881201197184275,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fac","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5653621981681933,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289aa","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289aa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":2.3178642298520904,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289ad","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289ad","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":3.5053749081925614,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289af","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289af","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":40.04143088116411,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b1","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5463484326413985,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b3","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.34135944316781563,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b5","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.4342379958246346,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b7","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.3431889474738037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b9","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.7932001870282547,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gmpvhy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e1","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gmpvhy-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-503-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.8434237995824635,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-z9k18m-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e9","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-z9k18m-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-262-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":43.85743174924166,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-lqs5aq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab33506e","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab33506e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-962-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":28.626017888132427,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-100g28-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab335075","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab335075","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-982-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T16:18:06Z","currentValue":{"number":11.553825150427263,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-ttnd16-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f5ba33ecda9e8141492cd5b","lastNotified":"2020-09-11T16:20:16Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5ba33ecda9e8141492cd5b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T16:20:08Z","status":"CLOSED","updated":"2020-09-11T16:20:08Z","userAlias":"e2e-cluster-217-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":40.856495288083025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7132","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7132","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":48.649598981966754,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7134","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7134","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:18:12Z","currentValue":{"number":41.36062002938047,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-atukxy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb154883b4603e13e8d17","lastNotified":"2020-09-11T17:19:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb154883b4603e13e8d17","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-atukxy-shard-0","resolved":"2020-09-11T17:19:07Z","status":"CLOSED","updated":"2020-09-11T17:19:07Z","userAlias":"e2e-cluster-561-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":1.1082594493700422,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add07959","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add07959","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":21.37755356875281,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add0795b","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add0795b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.4589898787787838,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30accc","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.018363939899833,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30acd1","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30acd1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":44.43293284093377,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff2","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff2","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":43.46256527360344,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff4","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":10.841580847933663,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f4f","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f4f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":2.0363901259912915,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f57","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":1.897220160026396,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c937","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c937","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":0.4809765482469234,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c941","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c941","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":34.28271826269323,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c943","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c943","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-780-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":33.00527477712803,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c945","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c945","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":46.59522517634292,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c947","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c947","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":29.44092490211565,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c949","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c949","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":0.5088082210062725,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab3","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":1.2355573365391037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab5","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:43:34Z","currentValue":{"number":0.6913094900967834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e8v6th-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c86663332aa623b186ccf","lastNotified":"2020-09-24T11:46:01Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c86663332aa623b186ccf","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e8v6th-shard-0","resolved":"2020-09-24T11:45:56Z","status":"CLOSED","updated":"2020-09-24T11:45:56Z","userAlias":"e2e-cluster-268-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":25.182217583786425,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-flg5w2-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383a","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383a","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flg5w2-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-588-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":24.143223369088577,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383c","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383c","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-222-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":0.9329299041855775,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-511umr-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f51","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f51","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-511umr-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-964-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":2.250782335123919,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f55","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f55","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-222-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":1.264508349104795,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c6zofi-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f57","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c6zofi-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-526-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":30.095125852344474,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-2u7mvs-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f59","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f59","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-2u7mvs-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-952-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b54cfef1dbb2894211edd","created":"2021-03-12T12:47:39Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b62eb60e01305d72724cc","lastNotified":"2021-03-12T12:48:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b62eb60e01305d72724cc","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-4b1qk6-shard-0","resolved":"2021-03-12T12:48:26Z","status":"CLOSED","updated":"2021-03-12T12:48:26Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b5a5820c56e27b46afa9f","created":"2021-03-12T13:11:10Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b686e60e01305d727428a","lastNotified":"2021-03-12T13:12:50Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b686e60e01305d727428a","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-149zfq-shard-0","resolved":"2021-03-12T13:12:41Z","status":"CLOSED","updated":"2021-03-12T13:12:41Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1526341cc593b52a608","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd777","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd777","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-84i50x-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1576341cc593b52a799","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd779","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd779","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1om9fa-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2022-03-18T12:53:36Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623480d072335b56b1905737","lastNotified":"2022-03-22T03:00:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/623480d072335b56b1905737","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-22T03:00:51Z","status":"CLOSED","updated":"2022-03-22T03:00:51Z"}],"totalCount":284} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T10:24:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T10:24:25Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5efdfce84deaf5428dea44be","created":"2020-07-02T16:27:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efe0b0097e6ab3f55a5d376","lastNotified":"2020-07-02T16:29:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efe0b0097e6ab3f55a5d376","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xmz5g4-shard-0","resolved":"2020-07-02T16:29:22Z","status":"CLOSED","updated":"2020-07-02T16:29:22Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f071035d0dc8d4bd86168de","created":"2020-07-09T13:40:29Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f071e4dd0dc8d4bd861c4ef","lastNotified":"2020-07-09T13:41:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f071e4dd0dc8d4bd861c4ef","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-mll9nu-shard-0","resolved":"2020-07-09T13:41:13Z","status":"CLOSED","updated":"2020-07-09T13:41:13Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07301f89f31d27b256f893","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e44","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e44","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-10oulw-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07300f89f31d27b256f501","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e46","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e46","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ul7lyr-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f088e7271aeec6fac20210a","created":"2020-07-10T16:51:34Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f089c96089f9828402835bd","lastNotified":"2020-07-10T16:52:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f089c96089f9828402835bd","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-43q3x9-shard-0","resolved":"2020-07-10T16:52:38Z","status":"CLOSED","updated":"2020-07-10T16:52:38Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f08bdcbd206160bb5c33a8c","created":"2020-07-10T20:13:27Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f08cbe70651a576d92584a4","lastNotified":"2020-07-10T20:15:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f08cbe70651a576d92584a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-n32snz-shard-0","resolved":"2020-07-10T20:15:10Z","status":"CLOSED","updated":"2020-07-10T20:15:10Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f0e13ce04f82410686db7a3","created":"2020-07-14T21:21:46Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f0e21ea08c7bf2e36da5c34","lastNotified":"2020-07-14T21:23:07Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f0e21ea08c7bf2e36da5c34","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1to8ri-shard-0","resolved":"2020-07-14T21:22:58Z","status":"CLOSED","updated":"2020-07-14T21:22:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f11c8ee4b49002456c7a7e2","created":"2020-07-17T16:51:22Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f11d70a4b49002456ca8316","lastNotified":"2020-07-17T16:51:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f11d70a4b49002456ca8316","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-g1b1wv-shard-0","resolved":"2020-07-17T16:51:32Z","status":"CLOSED","updated":"2020-07-17T16:51:32Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1707cab28d1d1f1e661c34","created":"2020-07-21T16:20:48Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1715e00d01212070cb7bac","lastNotified":"2020-07-21T16:22:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1715e00d01212070cb7bac","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-cwlya6-shard-0","resolved":"2020-07-21T16:22:16Z","status":"CLOSED","updated":"2020-07-21T16:22:16Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f17119db6dd6f5784522cfa","created":"2020-07-21T17:02:43Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f171fb30afba025e065a28e","lastNotified":"2020-07-21T17:03:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f171fb30afba025e065a28e","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-5i203l-shard-0","resolved":"2020-07-21T17:03:42Z","status":"CLOSED","updated":"2020-07-21T17:03:42Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bbe09297b50c14b2eeb","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e3","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e3","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-8tgdes-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b352a","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e5","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e5","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flxyt7-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b3523","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e7","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c043ww-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f18afdbdf32440a27abb79c","created":"2020-07-22T22:30:04Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f18bdec40f94a3ba156cc29","lastNotified":"2020-07-22T22:32:05Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f18bdec40f94a3ba156cc29","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-urca9f-shard-0","resolved":"2020-07-22T22:31:56Z","status":"CLOSED","updated":"2020-07-22T22:31:56Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1afe24e02fc2661b483493","created":"2020-07-24T16:28:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1b0c3c6ceaa977db7c2020","lastNotified":"2020-07-24T16:30:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1b0c3c6ceaa977db7c2020","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-7baq4v-shard-0","resolved":"2020-07-24T16:29:58Z","status":"CLOSED","updated":"2020-07-24T16:29:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f294bf692329e4200758fed","created":"2020-08-04T12:52:25Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f295a097a7fcf1588a32f85","lastNotified":"2020-08-04T12:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f295a097a7fcf1588a32f85","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-13barc-shard-0","resolved":"2020-08-04T12:53:34Z","status":"CLOSED","updated":"2020-08-04T12:53:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f313f7a8f4523669d3cd930","created":"2020-08-10T13:37:16Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f314d8c11481a3542f228f7","lastNotified":"2020-08-10T13:38:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f314d8c11481a3542f228f7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-wqrsj0-shard-0","resolved":"2020-08-10T13:37:57Z","status":"CLOSED","updated":"2020-08-10T13:37:57Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":20.932485722056025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd14459","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd14459","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":19.060418568482266,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445b","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":32.047727081757834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445d","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445d","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T18:59:02Z","currentValue":{"number":37.28271195480076,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gg6ii8-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3ec7f6b911625dfdb413ab","lastNotified":"2020-08-20T19:00:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ec7f6b911625dfdb413ab","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gg6ii8-shard-0","resolved":"2020-08-20T18:59:56Z","status":"CLOSED","updated":"2020-08-20T18:59:56Z","userAlias":"e2e-cluster-947-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":20.925128583156027,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-vlqsal-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227202","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227202","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-vlqsal-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-369-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":31.68626010286554,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-a4rwnt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227204","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227204","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-a4rwnt-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-975-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:37:30Z","currentValue":{"number":0.7660665811780772,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-hstims-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3efb2a1874502485237cf8","lastNotified":"2020-08-20T22:40:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3efb2a1874502485237cf8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-20T22:40:44Z","status":"CLOSED","updated":"2020-08-20T22:40:44Z","userAlias":"e2e-cluster-379-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f3efb1018745024852372a8","created":"2020-08-20T23:37:06Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f3f0922f9cad35d7728e449","lastNotified":"2020-08-20T23:38:36Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3f0922f9cad35d7728e449","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-hstims-shard-0","resolved":"2020-08-20T23:38:30Z","status":"CLOSED","updated":"2020-08-20T23:38:30Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":0.5932189228481193,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfa","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":3.678862805946244,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfc","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":20.739329523045555,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfe","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfe","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":15.634129647251296,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88accc","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.20331631801955,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acce","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acce","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.631859527538065,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acd0","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acd0","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":48.059072435650855,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1884","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1884","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":47.90469049404316,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1889","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1889","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:54:42Z","currentValue":{"number":28.919901293850874,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e2872ba8e14244d8b2eac","lastNotified":"2020-09-01T10:55:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2872ba8e14244d8b2eac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gco215-shard-0","resolved":"2020-09-01T10:55:42Z","status":"CLOSED","updated":"2020-09-01T10:55:42Z","userAlias":"e2e-cluster-43-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:57:39Z","currentValue":{"number":30.992973926942156,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-zsig7y-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2923ba8e14244d8b6c9e","lastNotified":"2020-09-01T10:59:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2923ba8e14244d8b6c9e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-zsig7y-shard-0","resolved":"2020-09-01T10:59:17Z","status":"CLOSED","updated":"2020-09-01T10:59:17Z","userAlias":"e2e-cluster-596-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":0.21777003484320556,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741b","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":33.20721918298482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741f","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":0.743314346802078,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba4","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":25.992043593086617,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba6","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba6","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":21.370403466473334,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba8","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":47.47918904403867,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748baa","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748baa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":32.60446130654969,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748bae","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748bae","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T10:06:10Z","currentValue":{"number":25.3388332351208,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-8mpzzy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f6e92b9d63e361b300cea","lastNotified":"2020-09-02T10:07:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f6e92b9d63e361b300cea","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T10:06:56Z","status":"CLOSED","updated":"2020-09-02T10:06:56Z","userAlias":"e2e-cluster-343-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:07:09Z","currentValue":{"number":43.54849509524926,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-dw52hh-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4f8aeda78e07056e54417e","lastNotified":"2020-09-02T12:08:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8aeda78e07056e54417e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:08:21Z","status":"CLOSED","updated":"2020-09-02T12:08:21Z","userAlias":"e2e-cluster-522-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:26:12Z","currentValue":{"number":27.550850283427806,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4f8f64a78e07056e55d71e","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f64a78e07056e55d71e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:27:02Z","currentValue":{"number":17.531111667919482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f8f96a78e07056e55f5a4","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f96a78e07056e55f5a4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c7jcsa-shard-0","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":37.50703097035913,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc7","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":23.622647906424817,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc9","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f4f97e13efd027d4f4e6019","created":"2020-09-02T14:03:03Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f4fa617283a657fb10873fb","lastNotified":"2020-09-02T14:03:44Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa617283a657fb10873fb","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ucr7s9-shard-0","resolved":"2020-09-02T14:03:34Z","status":"CLOSED","updated":"2020-09-02T14:03:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":4.455238254752533,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb44","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb44","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":7.225910877679781,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb46","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb46","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":49.10926769565512,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nbnszb-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa1","lastNotified":"2020-09-03T12:03:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-nbnszb-shard-0","resolved":"2020-09-03T12:02:59Z","status":"CLOSED","updated":"2020-09-03T12:02:59Z","userAlias":"e2e-cluster-328-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":0.6601597753785473,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa3","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.2116249143506526,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa8","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.4881201197184275,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fac","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5653621981681933,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289aa","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289aa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":2.3178642298520904,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289ad","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289ad","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":3.5053749081925614,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289af","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289af","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":40.04143088116411,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b1","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5463484326413985,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b3","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.34135944316781563,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b5","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.4342379958246346,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b7","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.3431889474738037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b9","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.7932001870282547,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gmpvhy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e1","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gmpvhy-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-503-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.8434237995824635,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-z9k18m-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e9","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-z9k18m-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-262-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":43.85743174924166,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-lqs5aq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab33506e","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab33506e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-962-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":28.626017888132427,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-100g28-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab335075","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab335075","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-982-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T16:18:06Z","currentValue":{"number":11.553825150427263,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-ttnd16-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f5ba33ecda9e8141492cd5b","lastNotified":"2020-09-11T16:20:16Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5ba33ecda9e8141492cd5b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T16:20:08Z","status":"CLOSED","updated":"2020-09-11T16:20:08Z","userAlias":"e2e-cluster-217-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":40.856495288083025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7132","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7132","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":48.649598981966754,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7134","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7134","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:18:12Z","currentValue":{"number":41.36062002938047,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-atukxy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb154883b4603e13e8d17","lastNotified":"2020-09-11T17:19:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb154883b4603e13e8d17","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-atukxy-shard-0","resolved":"2020-09-11T17:19:07Z","status":"CLOSED","updated":"2020-09-11T17:19:07Z","userAlias":"e2e-cluster-561-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":1.1082594493700422,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add07959","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add07959","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":21.37755356875281,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add0795b","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add0795b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.4589898787787838,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30accc","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.018363939899833,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30acd1","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30acd1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":44.43293284093377,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff2","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff2","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":43.46256527360344,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff4","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":10.841580847933663,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f4f","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f4f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":2.0363901259912915,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f57","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":1.897220160026396,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c937","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c937","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":0.4809765482469234,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c941","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c941","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":34.28271826269323,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c943","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c943","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-780-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":33.00527477712803,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c945","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c945","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":46.59522517634292,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c947","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c947","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":29.44092490211565,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c949","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c949","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":0.5088082210062725,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab3","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":1.2355573365391037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab5","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:43:34Z","currentValue":{"number":0.6913094900967834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e8v6th-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c86663332aa623b186ccf","lastNotified":"2020-09-24T11:46:01Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c86663332aa623b186ccf","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e8v6th-shard-0","resolved":"2020-09-24T11:45:56Z","status":"CLOSED","updated":"2020-09-24T11:45:56Z","userAlias":"e2e-cluster-268-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":25.182217583786425,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-flg5w2-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383a","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383a","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flg5w2-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-588-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":24.143223369088577,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383c","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383c","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-222-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":0.9329299041855775,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-511umr-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f51","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f51","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-511umr-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-964-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":2.250782335123919,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f55","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f55","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-222-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":1.264508349104795,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c6zofi-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f57","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c6zofi-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-526-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":30.095125852344474,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-2u7mvs-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f59","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f59","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-2u7mvs-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-952-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b54cfef1dbb2894211edd","created":"2021-03-12T12:47:39Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b62eb60e01305d72724cc","lastNotified":"2021-03-12T12:48:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b62eb60e01305d72724cc","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-4b1qk6-shard-0","resolved":"2021-03-12T12:48:26Z","status":"CLOSED","updated":"2021-03-12T12:48:26Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b5a5820c56e27b46afa9f","created":"2021-03-12T13:11:10Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b686e60e01305d727428a","lastNotified":"2021-03-12T13:12:50Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b686e60e01305d727428a","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-149zfq-shard-0","resolved":"2021-03-12T13:12:41Z","status":"CLOSED","updated":"2021-03-12T13:12:41Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1526341cc593b52a608","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd777","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd777","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-84i50x-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1576341cc593b52a799","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd779","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd779","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1om9fa-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2022-03-18T12:53:36Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623480d072335b56b1905737","lastNotified":"2022-03-22T03:00:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/623480d072335b56b1905737","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-22T03:00:51Z","status":"CLOSED","updated":"2022-03-22T03:00:51Z"}],"totalCount":284} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_CLOSED/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_CLOSED/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost index 02509c3a5b..8183a06cce 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_CLOSED/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_CLOSED/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 69795 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:56 GMT +Date: Thu, 24 Jul 2025 15:06:07 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1282 +X-Envoy-Upstream-Service-Time: 1147 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource::getAllAlerts X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=CLOSED&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=CLOSED&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-21T18:32:27Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-21T18:32:27Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5efdfce84deaf5428dea44be","created":"2020-07-02T16:27:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efe0b0097e6ab3f55a5d376","lastNotified":"2020-07-02T16:29:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efe0b0097e6ab3f55a5d376","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xmz5g4-shard-0","resolved":"2020-07-02T16:29:22Z","status":"CLOSED","updated":"2020-07-02T16:29:22Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f071035d0dc8d4bd86168de","created":"2020-07-09T13:40:29Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f071e4dd0dc8d4bd861c4ef","lastNotified":"2020-07-09T13:41:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f071e4dd0dc8d4bd861c4ef","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-mll9nu-shard-0","resolved":"2020-07-09T13:41:13Z","status":"CLOSED","updated":"2020-07-09T13:41:13Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07301f89f31d27b256f893","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e44","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e44","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-10oulw-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07300f89f31d27b256f501","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e46","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e46","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ul7lyr-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f088e7271aeec6fac20210a","created":"2020-07-10T16:51:34Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f089c96089f9828402835bd","lastNotified":"2020-07-10T16:52:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f089c96089f9828402835bd","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-43q3x9-shard-0","resolved":"2020-07-10T16:52:38Z","status":"CLOSED","updated":"2020-07-10T16:52:38Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f08bdcbd206160bb5c33a8c","created":"2020-07-10T20:13:27Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f08cbe70651a576d92584a4","lastNotified":"2020-07-10T20:15:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f08cbe70651a576d92584a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-n32snz-shard-0","resolved":"2020-07-10T20:15:10Z","status":"CLOSED","updated":"2020-07-10T20:15:10Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f0e13ce04f82410686db7a3","created":"2020-07-14T21:21:46Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f0e21ea08c7bf2e36da5c34","lastNotified":"2020-07-14T21:23:07Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f0e21ea08c7bf2e36da5c34","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1to8ri-shard-0","resolved":"2020-07-14T21:22:58Z","status":"CLOSED","updated":"2020-07-14T21:22:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f11c8ee4b49002456c7a7e2","created":"2020-07-17T16:51:22Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f11d70a4b49002456ca8316","lastNotified":"2020-07-17T16:51:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f11d70a4b49002456ca8316","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-g1b1wv-shard-0","resolved":"2020-07-17T16:51:32Z","status":"CLOSED","updated":"2020-07-17T16:51:32Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1707cab28d1d1f1e661c34","created":"2020-07-21T16:20:48Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1715e00d01212070cb7bac","lastNotified":"2020-07-21T16:22:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1715e00d01212070cb7bac","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-cwlya6-shard-0","resolved":"2020-07-21T16:22:16Z","status":"CLOSED","updated":"2020-07-21T16:22:16Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f17119db6dd6f5784522cfa","created":"2020-07-21T17:02:43Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f171fb30afba025e065a28e","lastNotified":"2020-07-21T17:03:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f171fb30afba025e065a28e","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-5i203l-shard-0","resolved":"2020-07-21T17:03:42Z","status":"CLOSED","updated":"2020-07-21T17:03:42Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bbe09297b50c14b2eeb","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e3","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e3","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-8tgdes-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b352a","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e5","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e5","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flxyt7-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b3523","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e7","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c043ww-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f18afdbdf32440a27abb79c","created":"2020-07-22T22:30:04Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f18bdec40f94a3ba156cc29","lastNotified":"2020-07-22T22:32:05Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f18bdec40f94a3ba156cc29","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-urca9f-shard-0","resolved":"2020-07-22T22:31:56Z","status":"CLOSED","updated":"2020-07-22T22:31:56Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1afe24e02fc2661b483493","created":"2020-07-24T16:28:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1b0c3c6ceaa977db7c2020","lastNotified":"2020-07-24T16:30:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1b0c3c6ceaa977db7c2020","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-7baq4v-shard-0","resolved":"2020-07-24T16:29:58Z","status":"CLOSED","updated":"2020-07-24T16:29:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f294bf692329e4200758fed","created":"2020-08-04T12:52:25Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f295a097a7fcf1588a32f85","lastNotified":"2020-08-04T12:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f295a097a7fcf1588a32f85","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-13barc-shard-0","resolved":"2020-08-04T12:53:34Z","status":"CLOSED","updated":"2020-08-04T12:53:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f313f7a8f4523669d3cd930","created":"2020-08-10T13:37:16Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f314d8c11481a3542f228f7","lastNotified":"2020-08-10T13:38:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f314d8c11481a3542f228f7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-wqrsj0-shard-0","resolved":"2020-08-10T13:37:57Z","status":"CLOSED","updated":"2020-08-10T13:37:57Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":20.932485722056025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd14459","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd14459","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":19.060418568482266,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445b","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":32.047727081757834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445d","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445d","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T18:59:02Z","currentValue":{"number":37.28271195480076,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gg6ii8-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3ec7f6b911625dfdb413ab","lastNotified":"2020-08-20T19:00:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ec7f6b911625dfdb413ab","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gg6ii8-shard-0","resolved":"2020-08-20T18:59:56Z","status":"CLOSED","updated":"2020-08-20T18:59:56Z","userAlias":"e2e-cluster-947-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":20.925128583156027,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-vlqsal-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227202","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227202","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-vlqsal-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-369-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":31.68626010286554,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-a4rwnt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227204","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227204","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-a4rwnt-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-975-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:37:30Z","currentValue":{"number":0.7660665811780772,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-hstims-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3efb2a1874502485237cf8","lastNotified":"2020-08-20T22:40:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3efb2a1874502485237cf8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-20T22:40:44Z","status":"CLOSED","updated":"2020-08-20T22:40:44Z","userAlias":"e2e-cluster-379-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f3efb1018745024852372a8","created":"2020-08-20T23:37:06Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f3f0922f9cad35d7728e449","lastNotified":"2020-08-20T23:38:36Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3f0922f9cad35d7728e449","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-hstims-shard-0","resolved":"2020-08-20T23:38:30Z","status":"CLOSED","updated":"2020-08-20T23:38:30Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":0.5932189228481193,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfa","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":3.678862805946244,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfc","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":20.739329523045555,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfe","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfe","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":15.634129647251296,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88accc","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.20331631801955,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acce","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acce","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.631859527538065,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acd0","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acd0","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":48.059072435650855,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1884","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1884","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":47.90469049404316,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1889","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1889","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:54:42Z","currentValue":{"number":28.919901293850874,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e2872ba8e14244d8b2eac","lastNotified":"2020-09-01T10:55:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2872ba8e14244d8b2eac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gco215-shard-0","resolved":"2020-09-01T10:55:42Z","status":"CLOSED","updated":"2020-09-01T10:55:42Z","userAlias":"e2e-cluster-43-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:57:39Z","currentValue":{"number":30.992973926942156,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-zsig7y-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2923ba8e14244d8b6c9e","lastNotified":"2020-09-01T10:59:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2923ba8e14244d8b6c9e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-zsig7y-shard-0","resolved":"2020-09-01T10:59:17Z","status":"CLOSED","updated":"2020-09-01T10:59:17Z","userAlias":"e2e-cluster-596-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":0.21777003484320556,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741b","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":33.20721918298482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741f","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":0.743314346802078,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba4","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":25.992043593086617,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba6","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba6","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":21.370403466473334,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba8","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":47.47918904403867,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748baa","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748baa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":32.60446130654969,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748bae","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748bae","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T10:06:10Z","currentValue":{"number":25.3388332351208,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-8mpzzy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f6e92b9d63e361b300cea","lastNotified":"2020-09-02T10:07:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f6e92b9d63e361b300cea","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T10:06:56Z","status":"CLOSED","updated":"2020-09-02T10:06:56Z","userAlias":"e2e-cluster-343-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:07:09Z","currentValue":{"number":43.54849509524926,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-dw52hh-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4f8aeda78e07056e54417e","lastNotified":"2020-09-02T12:08:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8aeda78e07056e54417e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:08:21Z","status":"CLOSED","updated":"2020-09-02T12:08:21Z","userAlias":"e2e-cluster-522-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:26:12Z","currentValue":{"number":27.550850283427806,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4f8f64a78e07056e55d71e","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f64a78e07056e55d71e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:27:02Z","currentValue":{"number":17.531111667919482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f8f96a78e07056e55f5a4","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f96a78e07056e55f5a4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c7jcsa-shard-0","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":37.50703097035913,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc7","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":23.622647906424817,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc9","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f4f97e13efd027d4f4e6019","created":"2020-09-02T14:03:03Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f4fa617283a657fb10873fb","lastNotified":"2020-09-02T14:03:44Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa617283a657fb10873fb","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ucr7s9-shard-0","resolved":"2020-09-02T14:03:34Z","status":"CLOSED","updated":"2020-09-02T14:03:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":4.455238254752533,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb44","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb44","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":7.225910877679781,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb46","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb46","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":49.10926769565512,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nbnszb-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa1","lastNotified":"2020-09-03T12:03:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-nbnszb-shard-0","resolved":"2020-09-03T12:02:59Z","status":"CLOSED","updated":"2020-09-03T12:02:59Z","userAlias":"e2e-cluster-328-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":0.6601597753785473,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa3","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.2116249143506526,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa8","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.4881201197184275,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fac","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5653621981681933,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289aa","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289aa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":2.3178642298520904,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289ad","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289ad","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":3.5053749081925614,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289af","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289af","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":40.04143088116411,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b1","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5463484326413985,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b3","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.34135944316781563,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b5","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.4342379958246346,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b7","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.3431889474738037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b9","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.7932001870282547,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gmpvhy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e1","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gmpvhy-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-503-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.8434237995824635,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-z9k18m-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e9","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-z9k18m-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-262-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":43.85743174924166,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-lqs5aq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab33506e","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab33506e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-962-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":28.626017888132427,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-100g28-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab335075","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab335075","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-982-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T16:18:06Z","currentValue":{"number":11.553825150427263,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-ttnd16-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f5ba33ecda9e8141492cd5b","lastNotified":"2020-09-11T16:20:16Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5ba33ecda9e8141492cd5b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T16:20:08Z","status":"CLOSED","updated":"2020-09-11T16:20:08Z","userAlias":"e2e-cluster-217-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":40.856495288083025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7132","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7132","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":48.649598981966754,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7134","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7134","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:18:12Z","currentValue":{"number":41.36062002938047,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-atukxy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb154883b4603e13e8d17","lastNotified":"2020-09-11T17:19:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb154883b4603e13e8d17","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-atukxy-shard-0","resolved":"2020-09-11T17:19:07Z","status":"CLOSED","updated":"2020-09-11T17:19:07Z","userAlias":"e2e-cluster-561-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":1.1082594493700422,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add07959","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add07959","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":21.37755356875281,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add0795b","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add0795b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.4589898787787838,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30accc","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.018363939899833,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30acd1","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30acd1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":44.43293284093377,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff2","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff2","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":43.46256527360344,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff4","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":10.841580847933663,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f4f","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f4f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":2.0363901259912915,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f57","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":1.897220160026396,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c937","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c937","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":0.4809765482469234,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c941","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c941","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":34.28271826269323,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c943","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c943","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-780-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":33.00527477712803,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c945","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c945","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":46.59522517634292,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c947","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c947","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":29.44092490211565,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c949","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c949","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":0.5088082210062725,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab3","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":1.2355573365391037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab5","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:43:34Z","currentValue":{"number":0.6913094900967834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e8v6th-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c86663332aa623b186ccf","lastNotified":"2020-09-24T11:46:01Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c86663332aa623b186ccf","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e8v6th-shard-0","resolved":"2020-09-24T11:45:56Z","status":"CLOSED","updated":"2020-09-24T11:45:56Z","userAlias":"e2e-cluster-268-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":25.182217583786425,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-flg5w2-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383a","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383a","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flg5w2-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-588-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":24.143223369088577,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383c","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383c","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-222-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":0.9329299041855775,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-511umr-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f51","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f51","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-511umr-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-964-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":2.250782335123919,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f55","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f55","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-222-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":1.264508349104795,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c6zofi-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f57","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c6zofi-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-526-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":30.095125852344474,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-2u7mvs-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f59","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f59","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-2u7mvs-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-952-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b54cfef1dbb2894211edd","created":"2021-03-12T12:47:39Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b62eb60e01305d72724cc","lastNotified":"2021-03-12T12:48:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b62eb60e01305d72724cc","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-4b1qk6-shard-0","resolved":"2021-03-12T12:48:26Z","status":"CLOSED","updated":"2021-03-12T12:48:26Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b5a5820c56e27b46afa9f","created":"2021-03-12T13:11:10Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b686e60e01305d727428a","lastNotified":"2021-03-12T13:12:50Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b686e60e01305d727428a","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-149zfq-shard-0","resolved":"2021-03-12T13:12:41Z","status":"CLOSED","updated":"2021-03-12T13:12:41Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1526341cc593b52a608","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd777","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd777","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-84i50x-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1576341cc593b52a799","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd779","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd779","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1om9fa-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2022-03-18T12:53:36Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623480d072335b56b1905737","lastNotified":"2022-03-22T03:00:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/623480d072335b56b1905737","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-22T03:00:51Z","status":"CLOSED","updated":"2022-03-22T03:00:51Z"}],"totalCount":281} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=CLOSED&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=CLOSED&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T10:24:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T10:24:25Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5efdfce84deaf5428dea44be","created":"2020-07-02T16:27:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5efe0b0097e6ab3f55a5d376","lastNotified":"2020-07-02T16:29:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efe0b0097e6ab3f55a5d376","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xmz5g4-shard-0","resolved":"2020-07-02T16:29:22Z","status":"CLOSED","updated":"2020-07-02T16:29:22Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f071035d0dc8d4bd86168de","created":"2020-07-09T13:40:29Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f071e4dd0dc8d4bd861c4ef","lastNotified":"2020-07-09T13:41:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f071e4dd0dc8d4bd861c4ef","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-mll9nu-shard-0","resolved":"2020-07-09T13:41:13Z","status":"CLOSED","updated":"2020-07-09T13:41:13Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07301f89f31d27b256f893","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e44","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e44","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-10oulw-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f07300f89f31d27b256f501","created":"2020-07-09T15:56:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f073e337c922216eb449e46","lastNotified":"2020-07-09T15:57:46Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f073e337c922216eb449e46","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ul7lyr-shard-0","resolved":"2020-07-09T15:57:37Z","status":"CLOSED","updated":"2020-07-09T15:57:37Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f088e7271aeec6fac20210a","created":"2020-07-10T16:51:34Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f089c96089f9828402835bd","lastNotified":"2020-07-10T16:52:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f089c96089f9828402835bd","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-43q3x9-shard-0","resolved":"2020-07-10T16:52:38Z","status":"CLOSED","updated":"2020-07-10T16:52:38Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f08bdcbd206160bb5c33a8c","created":"2020-07-10T20:13:27Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f08cbe70651a576d92584a4","lastNotified":"2020-07-10T20:15:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f08cbe70651a576d92584a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-n32snz-shard-0","resolved":"2020-07-10T20:15:10Z","status":"CLOSED","updated":"2020-07-10T20:15:10Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f0e13ce04f82410686db7a3","created":"2020-07-14T21:21:46Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f0e21ea08c7bf2e36da5c34","lastNotified":"2020-07-14T21:23:07Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f0e21ea08c7bf2e36da5c34","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1to8ri-shard-0","resolved":"2020-07-14T21:22:58Z","status":"CLOSED","updated":"2020-07-14T21:22:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f11c8ee4b49002456c7a7e2","created":"2020-07-17T16:51:22Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f11d70a4b49002456ca8316","lastNotified":"2020-07-17T16:51:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f11d70a4b49002456ca8316","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-g1b1wv-shard-0","resolved":"2020-07-17T16:51:32Z","status":"CLOSED","updated":"2020-07-17T16:51:32Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1707cab28d1d1f1e661c34","created":"2020-07-21T16:20:48Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1715e00d01212070cb7bac","lastNotified":"2020-07-21T16:22:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1715e00d01212070cb7bac","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-cwlya6-shard-0","resolved":"2020-07-21T16:22:16Z","status":"CLOSED","updated":"2020-07-21T16:22:16Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f17119db6dd6f5784522cfa","created":"2020-07-21T17:02:43Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f171fb30afba025e065a28e","lastNotified":"2020-07-21T17:03:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f171fb30afba025e065a28e","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-5i203l-shard-0","resolved":"2020-07-21T17:03:42Z","status":"CLOSED","updated":"2020-07-21T17:03:42Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bbe09297b50c14b2eeb","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e3","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e3","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-8tgdes-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b352a","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e5","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e5","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flxyt7-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f185bcd09297b50c14b3523","created":"2020-07-22T16:31:37Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1869e9f7b4513897f338e7","lastNotified":"2020-07-22T16:33:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1869e9f7b4513897f338e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c043ww-shard-0","resolved":"2020-07-22T16:33:01Z","status":"CLOSED","updated":"2020-07-22T16:33:01Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f18afdbdf32440a27abb79c","created":"2020-07-22T22:30:04Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f18bdec40f94a3ba156cc29","lastNotified":"2020-07-22T22:32:05Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f18bdec40f94a3ba156cc29","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-urca9f-shard-0","resolved":"2020-07-22T22:31:56Z","status":"CLOSED","updated":"2020-07-22T22:31:56Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f1afe24e02fc2661b483493","created":"2020-07-24T16:28:44Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f1b0c3c6ceaa977db7c2020","lastNotified":"2020-07-24T16:30:08Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f1b0c3c6ceaa977db7c2020","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-7baq4v-shard-0","resolved":"2020-07-24T16:29:58Z","status":"CLOSED","updated":"2020-07-24T16:29:58Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f294bf692329e4200758fed","created":"2020-08-04T12:52:25Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f295a097a7fcf1588a32f85","lastNotified":"2020-08-04T12:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f295a097a7fcf1588a32f85","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-13barc-shard-0","resolved":"2020-08-04T12:53:34Z","status":"CLOSED","updated":"2020-08-04T12:53:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f313f7a8f4523669d3cd930","created":"2020-08-10T13:37:16Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f314d8c11481a3542f228f7","lastNotified":"2020-08-10T13:38:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f314d8c11481a3542f228f7","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-wqrsj0-shard-0","resolved":"2020-08-10T13:37:57Z","status":"CLOSED","updated":"2020-08-10T13:37:57Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":20.932485722056025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd14459","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd14459","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":19.060418568482266,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445b","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-18T16:13:35Z","currentValue":{"number":32.047727081757834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c0w6bq-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3bfe2f7c4df938ecd1445d","lastNotified":"2020-08-18T16:14:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3bfe2f7c4df938ecd1445d","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-18T16:14:36Z","status":"CLOSED","updated":"2020-08-18T16:14:36Z","userAlias":"e2e-cluster-736-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T18:59:02Z","currentValue":{"number":37.28271195480076,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gg6ii8-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f3ec7f6b911625dfdb413ab","lastNotified":"2020-08-20T19:00:02Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ec7f6b911625dfdb413ab","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gg6ii8-shard-0","resolved":"2020-08-20T18:59:56Z","status":"CLOSED","updated":"2020-08-20T18:59:56Z","userAlias":"e2e-cluster-947-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":20.925128583156027,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-vlqsal-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227202","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227202","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-vlqsal-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-369-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:23:09Z","currentValue":{"number":31.68626010286554,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-a4rwnt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3ef7cd1874502485227204","lastNotified":"2020-08-20T22:24:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3ef7cd1874502485227204","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-a4rwnt-shard-0","resolved":"2020-08-20T22:24:39Z","status":"CLOSED","updated":"2020-08-20T22:24:39Z","userAlias":"e2e-cluster-975-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-20T22:37:30Z","currentValue":{"number":0.7660665811780772,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-hstims-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f3efb2a1874502485237cf8","lastNotified":"2020-08-20T22:40:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3efb2a1874502485237cf8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-20T22:40:44Z","status":"CLOSED","updated":"2020-08-20T22:40:44Z","userAlias":"e2e-cluster-379-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f3efb1018745024852372a8","created":"2020-08-20T23:37:06Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f3f0922f9cad35d7728e449","lastNotified":"2020-08-20T23:38:36Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f3f0922f9cad35d7728e449","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-hstims-shard-0","resolved":"2020-08-20T23:38:30Z","status":"CLOSED","updated":"2020-08-20T23:38:30Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":0.5932189228481193,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfa","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":3.678862805946244,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfc","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-08-28T11:43:32Z","currentValue":{"number":20.739329523045555,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-o1hhwf-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f48ede4271acf2433fe0cfe","lastNotified":"2020-08-28T11:44:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f48ede4271acf2433fe0cfe","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-08-28T11:44:52Z","status":"CLOSED","updated":"2020-08-28T11:44:52Z","userAlias":"e2e-cluster-789-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":15.634129647251296,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88accc","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.20331631801955,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acce","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acce","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:27:41Z","currentValue":{"number":22.631859527538065,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10g1ny-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e221dba8e14244d88acd0","lastNotified":"2020-09-01T10:28:31Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e221dba8e14244d88acd0","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:28:23Z","status":"CLOSED","updated":"2020-09-01T10:28:23Z","userAlias":"e2e-cluster-99-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":48.059072435650855,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1884","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1884","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:53:52Z","currentValue":{"number":47.90469049404316,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2840ba8e14244d8b1889","lastNotified":"2020-09-01T10:56:49Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2840ba8e14244d8b1889","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T10:56:42Z","status":"CLOSED","updated":"2020-09-01T10:56:42Z","userAlias":"e2e-cluster-43-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:54:42Z","currentValue":{"number":28.919901293850874,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gco215-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e2872ba8e14244d8b2eac","lastNotified":"2020-09-01T10:55:48Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2872ba8e14244d8b2eac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gco215-shard-0","resolved":"2020-09-01T10:55:42Z","status":"CLOSED","updated":"2020-09-01T10:55:42Z","userAlias":"e2e-cluster-43-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T10:57:39Z","currentValue":{"number":30.992973926942156,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-zsig7y-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e2923ba8e14244d8b6c9e","lastNotified":"2020-09-01T10:59:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e2923ba8e14244d8b6c9e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-zsig7y-shard-0","resolved":"2020-09-01T10:59:17Z","status":"CLOSED","updated":"2020-09-01T10:59:17Z","userAlias":"e2e-cluster-596-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":0.21777003484320556,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741b","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T12:23:40Z","currentValue":{"number":33.20721918298482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-10rnhe-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e3d4c89146b337767741f","lastNotified":"2020-09-01T12:24:51Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e3d4c89146b337767741f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T12:24:42Z","status":"CLOSED","updated":"2020-09-01T12:24:42Z","userAlias":"e2e-cluster-5-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":0.743314346802078,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba4","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":25.992043593086617,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba6","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba6","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":21.370403466473334,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nuwcx3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748ba8","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748ba8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-928-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":47.47918904403867,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748baa","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748baa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-01T17:42:45Z","currentValue":{"number":32.60446130654969,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-34d38q-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4e8815f8416532d4748bae","lastNotified":"2020-09-01T17:43:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4e8815f8416532d4748bae","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-01T17:43:50Z","status":"CLOSED","updated":"2020-09-01T17:43:50Z","userAlias":"e2e-cluster-87-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T10:06:10Z","currentValue":{"number":25.3388332351208,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-8mpzzy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f6e92b9d63e361b300cea","lastNotified":"2020-09-02T10:07:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f6e92b9d63e361b300cea","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T10:06:56Z","status":"CLOSED","updated":"2020-09-02T10:06:56Z","userAlias":"e2e-cluster-343-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:07:09Z","currentValue":{"number":43.54849509524926,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-dw52hh-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f4f8aeda78e07056e54417e","lastNotified":"2020-09-02T12:08:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8aeda78e07056e54417e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:08:21Z","status":"CLOSED","updated":"2020-09-02T12:08:21Z","userAlias":"e2e-cluster-522-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:26:12Z","currentValue":{"number":27.550850283427806,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4f8f64a78e07056e55d71e","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f64a78e07056e55d71e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T12:27:02Z","currentValue":{"number":17.531111667919482,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c7jcsa-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4f8f96a78e07056e55f5a4","lastNotified":"2020-09-02T12:28:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4f8f96a78e07056e55f5a4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c7jcsa-shard-0","resolved":"2020-09-02T12:28:01Z","status":"CLOSED","updated":"2020-09-02T12:28:01Z","userAlias":"e2e-cluster-894-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":37.50703097035913,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc7","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-02T13:49:46Z","currentValue":{"number":23.622647906424817,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-psccq7-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f4fa2fa283a657fb1075dc9","lastNotified":"2020-09-02T13:51:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa2fa283a657fb1075dc9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-02T13:51:20Z","status":"CLOSED","updated":"2020-09-02T13:51:20Z","userAlias":"e2e-cluster-965-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"5f4f97e13efd027d4f4e6019","created":"2020-09-02T14:03:03Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"5f4fa617283a657fb10873fb","lastNotified":"2020-09-02T14:03:44Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f4fa617283a657fb10873fb","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-ucr7s9-shard-0","resolved":"2020-09-02T14:03:34Z","status":"CLOSED","updated":"2020-09-02T14:03:34Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":4.455238254752533,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb44","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb44","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T09:37:08Z","currentValue":{"number":7.225910877679781,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-b7vxm3-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50b9442b89550a6b44eb46","lastNotified":"2020-09-03T09:37:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50b9442b89550a6b44eb46","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-b7vxm3-shard-0","resolved":"2020-09-03T09:37:34Z","status":"CLOSED","updated":"2020-09-03T09:37:34Z","userAlias":"e2e-cluster-643-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":49.10926769565512,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-nbnszb-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa1","lastNotified":"2020-09-03T12:03:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-nbnszb-shard-0","resolved":"2020-09-03T12:02:59Z","status":"CLOSED","updated":"2020-09-03T12:02:59Z","userAlias":"e2e-cluster-328-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":0.6601597753785473,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa3","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.2116249143506526,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fa8","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fa8","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-03T12:02:48Z","currentValue":{"number":1.4881201197184275,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-9mc2ci-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f50db682b89550a6b520fac","lastNotified":"2020-09-03T12:04:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f50db682b89550a6b520fac","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-9mc2ci-shard-0","resolved":"2020-09-03T12:04:08Z","status":"CLOSED","updated":"2020-09-03T12:04:08Z","userAlias":"e2e-cluster-28-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5653621981681933,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289aa","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289aa","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":2.3178642298520904,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-w1etex-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289ad","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289ad","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-549-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":3.5053749081925614,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289af","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289af","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":40.04143088116411,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b1","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.5463484326413985,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b3","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.34135944316781563,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e0e69a-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b5","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e0e69a-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-980-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":0.4342379958246346,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b7","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b7","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:32:01Z","currentValue":{"number":1.3431889474738037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-xnaaja-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f59038154ec5663be6289b9","lastNotified":"2020-09-09T16:34:13Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f59038154ec5663be6289b9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-xnaaja-shard-0","resolved":"2020-09-09T16:34:03Z","status":"CLOSED","updated":"2020-09-09T16:34:03Z","userAlias":"e2e-cluster-859-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.7932001870282547,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-gmpvhy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e1","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-gmpvhy-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-503-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-09T16:34:03Z","currentValue":{"number":0.8434237995824635,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-z9k18m-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5903fb54ec5663be62c6e9","lastNotified":"2020-09-09T16:38:47Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5903fb54ec5663be62c6e9","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-z9k18m-shard-0","resolved":"2020-09-09T16:38:38Z","status":"CLOSED","updated":"2020-09-09T16:38:38Z","userAlias":"e2e-cluster-262-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":43.85743174924166,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-lqs5aq-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab33506e","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab33506e","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-962-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T12:28:39Z","currentValue":{"number":28.626017888132427,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-100g28-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5b6d778b215264ab335075","lastNotified":"2020-09-11T12:29:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5b6d778b215264ab335075","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T12:29:18Z","status":"CLOSED","updated":"2020-09-11T12:29:18Z","userAlias":"e2e-cluster-982-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T16:18:06Z","currentValue":{"number":11.553825150427263,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-ttnd16-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f5ba33ecda9e8141492cd5b","lastNotified":"2020-09-11T16:20:16Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5ba33ecda9e8141492cd5b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T16:20:08Z","status":"CLOSED","updated":"2020-09-11T16:20:08Z","userAlias":"e2e-cluster-217-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":40.856495288083025,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7132","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7132","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:17:07Z","currentValue":{"number":48.649598981966754,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-f6cijt-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5bb113883b4603e13e7134","lastNotified":"2020-09-11T17:18:20Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb113883b4603e13e7134","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-11T17:18:12Z","status":"CLOSED","updated":"2020-09-11T17:18:12Z","userAlias":"e2e-cluster-195-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-11T17:18:12Z","currentValue":{"number":41.36062002938047,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-atukxy-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5bb154883b4603e13e8d17","lastNotified":"2020-09-11T17:19:15Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5bb154883b4603e13e8d17","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-atukxy-shard-0","resolved":"2020-09-11T17:19:07Z","status":"CLOSED","updated":"2020-09-11T17:19:07Z","userAlias":"e2e-cluster-561-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":1.1082594493700422,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add07959","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add07959","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-14T09:25:46Z","currentValue":{"number":21.37755356875281,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-546hof-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f5f371aa23f7a62add0795b","lastNotified":"2020-09-14T09:27:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f5f371aa23f7a62add0795b","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-546hof-shard-0","resolved":"2020-09-14T09:27:14Z","status":"CLOSED","updated":"2020-09-14T09:27:14Z","userAlias":"e2e-cluster-142-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.4589898787787838,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30accc","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30accc","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-15T09:10:55Z","currentValue":{"number":1.018363939899833,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-11lx7m-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f60851f2227d34d3f30acd1","lastNotified":"2020-09-15T09:13:03Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f60851f2227d34d3f30acd1","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-15T09:12:55Z","status":"CLOSED","updated":"2020-09-15T09:12:55Z","userAlias":"e2e-cluster-232-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":44.43293284093377,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff2","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff2","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-17T09:47:02Z","currentValue":{"number":43.46256527360344,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tqiobm-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6330968515c3797d65dff4","lastNotified":"2020-09-17T09:47:52Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6330968515c3797d65dff4","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-17T09:47:43Z","status":"CLOSED","updated":"2020-09-17T09:47:43Z","userAlias":"e2e-cluster-334-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":10.841580847933663,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f4f","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f4f","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-23T15:38:50Z","currentValue":{"number":2.0363901259912915,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-t8obgo-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6b6c0aab101c00a3b24f57","lastNotified":"2020-09-23T15:39:59Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6b6c0aab101c00a3b24f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-t8obgo-shard-0","resolved":"2020-09-23T15:39:54Z","status":"CLOSED","updated":"2020-09-23T15:39:54Z","userAlias":"e2e-cluster-62-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":1.897220160026396,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c937","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c937","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":0.4809765482469234,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c941","lastNotified":"2020-09-24T11:40:45Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c941","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:40:37Z","status":"CLOSED","updated":"2020-09-24T11:40:37Z","userAlias":"e2e-cluster-780-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":34.28271826269323,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-145gul-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c943","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c943","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-780-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":33.00527477712803,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c945","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c945","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":46.59522517634292,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c947","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c947","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:37:10Z","currentValue":{"number":29.44092490211565,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-tkh5bv-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6c84e63332aa623b17c949","lastNotified":"2020-09-24T11:38:25Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c84e63332aa623b17c949","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","resolved":"2020-09-24T11:38:20Z","status":"CLOSED","updated":"2020-09-24T11:38:20Z","userAlias":"e2e-cluster-105-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":0.5088082210062725,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab3","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab3","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:41:51Z","currentValue":{"number":1.2355573365391037,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-au3mil-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c85ff3332aa623b184ab5","lastNotified":"2020-09-24T11:43:41Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c85ff3332aa623b184ab5","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-au3mil-shard-0","resolved":"2020-09-24T11:43:34Z","status":"CLOSED","updated":"2020-09-24T11:43:34Z","userAlias":"e2e-cluster-627-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T11:43:34Z","currentValue":{"number":0.6913094900967834,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-e8v6th-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6c86663332aa623b186ccf","lastNotified":"2020-09-24T11:46:01Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6c86663332aa623b186ccf","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-e8v6th-shard-0","resolved":"2020-09-24T11:45:56Z","status":"CLOSED","updated":"2020-09-24T11:45:56Z","userAlias":"e2e-cluster-268-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":25.182217583786425,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-flg5w2-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383a","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383a","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-flg5w2-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-588-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:51:02Z","currentValue":{"number":24.143223369088577,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca4463332aa623b26383c","lastNotified":"2020-09-24T13:52:23Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca4463332aa623b26383c","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:52:13Z","status":"CLOSED","updated":"2020-09-24T13:52:13Z","userAlias":"e2e-cluster-222-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":0.9329299041855775,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-511umr-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f51","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f51","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-511umr-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-964-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":2.250782335123919,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-d6k8gy-shard-00-02.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f55","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f55","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-d6k8gy-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-222-shard-00-02.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":1.264508349104795,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-c6zofi-shard-00-00.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f57","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f57","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-c6zofi-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-526-shard-00-00.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce0f","created":"2020-09-24T13:52:13Z","currentValue":{"number":30.095125852344474,"units":"RAW"},"eventTypeName":"OUTSIDE_METRIC_THRESHOLD","groupId":"b0123456789abcdef012345b","hostnameAndPort":"atlas-2u7mvs-shard-00-01.g1nxq.mongodb-dev.net:27017","id":"5f6ca48d3332aa623b265f59","lastNotified":"2020-09-24T13:53:43Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5f6ca48d3332aa623b265f59","rel":"self"}],"metricName":"NORMALIZED_SYSTEM_CPU_STEAL","orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-2u7mvs-shard-0","resolved":"2020-09-24T13:53:35Z","status":"CLOSED","updated":"2020-09-24T13:53:35Z","userAlias":"e2e-cluster-952-shard-00-01.g1nxq.mongodb-dev.net"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b54cfef1dbb2894211edd","created":"2021-03-12T12:47:39Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b62eb60e01305d72724cc","lastNotified":"2021-03-12T12:48:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b62eb60e01305d72724cc","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-4b1qk6-shard-0","resolved":"2021-03-12T12:48:26Z","status":"CLOSED","updated":"2021-03-12T12:48:26Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"604b5a5820c56e27b46afa9f","created":"2021-03-12T13:11:10Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"604b686e60e01305d727428a","lastNotified":"2021-03-12T13:12:50Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/604b686e60e01305d727428a","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-149zfq-shard-0","resolved":"2021-03-12T13:12:41Z","status":"CLOSED","updated":"2021-03-12T13:12:41Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1526341cc593b52a608","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd777","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd777","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-84i50x-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"5efda6aea3f2ed2e7dd6ce06","clusterId":"60b7d1576341cc593b52a799","created":"2021-06-02T19:43:35Z","eventTypeName":"REPLICATION_OPLOG_WINDOW_RUNNING_OUT","groupId":"b0123456789abcdef012345b","id":"60b7df6794609c6dbaabd779","lastNotified":"2021-06-02T19:45:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/60b7df6794609c6dbaabd779","rel":"self"}],"orgId":"a0123456789abcdef012345a","replicaSetName":"atlas-1om9fa-shard-0","resolved":"2021-06-02T19:45:04Z","status":"CLOSED","updated":"2021-06-02T19:45:04Z"},{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2022-03-18T12:53:36Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"623480d072335b56b1905737","lastNotified":"2022-03-22T03:00:56Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/623480d072335b56b1905737","rel":"self"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-22T03:00:51Z","status":"CLOSED","updated":"2022-03-22T03:00:51Z"}],"totalCount":281} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_OPEN/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_OPEN/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost index b3c9da332e..eec3de3a80 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_OPEN/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/List_with_status_OPEN/GET_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 1536 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:57 GMT +Date: Thu, 24 Jul 2025 15:06:09 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 +X-Envoy-Upstream-Service-Time: 134 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource::getAllAlerts X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=OPEN&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2025-07-02T02:06:31Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649427e30c2948581218a4","lastNotified":"2025-07-21T15:07:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649427e30c2948581218a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-22T02:05:53Z"},{"alertConfigId":"623997b6c4f2aa666ae90fad","created":"2025-07-02T02:06:32Z","eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649428e30c29485812415f","lastNotified":"2025-07-21T15:07:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649428e30c29485812415f","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-22T02:05:53Z"},{"alertConfigId":"624db2d013b80654d0c0d0bd","created":"2025-07-02T02:06:32Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649428e30c2948581244e7","lastNotified":"2025-07-02T02:06:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649428e30c2948581244e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-22T02:05:53Z"}],"totalCount":3} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts?includeCount=true&status=OPEN&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"alertConfigId":"62347fd81bfe1073af78a5e2","created":"2025-07-02T02:06:31Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649427e30c2948581218a4","lastNotified":"2025-07-23T15:09:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649427e30c2948581218a4","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-24T02:11:02Z"},{"alertConfigId":"623997b6c4f2aa666ae90fad","created":"2025-07-02T02:06:32Z","eventTypeName":"PENDING_INVOICE_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649428e30c29485812415f","lastNotified":"2025-07-23T15:09:19Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649428e30c29485812415f","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-24T02:11:02Z"},{"alertConfigId":"624db2d013b80654d0c0d0bd","created":"2025-07-02T02:06:32Z","eventTypeName":"DAILY_BILL_OVER_THRESHOLD","groupId":"b0123456789abcdef012345b","id":"68649428e30c2948581244e7","lastNotified":"2025-07-02T02:06:32Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/68649428e30c2948581244e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","status":"OPEN","updated":"2025-07-24T02:11:02Z"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAlerts/UnAcknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost b/test/e2e/testdata/.snapshots/TestAlerts/UnAcknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost index cdad56cae1..7bb751eb12 100644 --- a/test/e2e/testdata/.snapshots/TestAlerts/UnAcknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAlerts/UnAcknowledge/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_alerts_5efdb5dd5b306e51e2e9b05b_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 811 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:00 GMT +Date: Thu, 24 Jul 2025 15:06:11 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 126 +X-Envoy-Upstream-Service-Time: 94 X-Frame-Options: DENY X-Java-Method: ApiAlertsResource20240530::patchAlert X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-22T05:13:00Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-22T05:13:00Z"} \ No newline at end of file +{"alertConfigId":"5efdb59f93fc35705f337179","created":"2020-07-02T10:24:29Z","eventTypeName":"USERS_WITHOUT_MULTI_FACTOR_AUTH","groupId":"b0123456789abcdef012345b","id":"5efdb5dd5b306e51e2e9b05b","lastNotified":"2025-07-24T15:06:11Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alertConfigs/5efdb59f93fc35705f337179","rel":"http://localhost:8080/alertConfig"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/alerts/5efdb5dd5b306e51e2e9b05b/alertConfigs","rel":"http://localhost:8080/alertConfigs"}],"orgId":"a0123456789abcdef012345a","resolved":"2022-03-16T18:39:26Z","status":"CLOSED","updated":"2025-07-24T15:06:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost deleted file mode 100644 index efe54d7c1e..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 474 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 219 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersAccessListResource::addApiUserAccessList -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.92/32","count":0,"created":"2025-07-22T05:11:25Z","ipAddress":"192.168.0.92","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList/192.168.0.92","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost new file mode 100644 index 0000000000..64af09d928 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 477 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 181 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersAccessListResource::addApiUserAccessList +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.245/32","count":0,"created":"2025-07-24T15:05:00Z","ipAddress":"192.168.0.245","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList/192.168.0.245","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/GET_api_private_ipinfo_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/GET_api_private_ipinfo_1.snaphost index a6169b27f3..00e5995b21 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/GET_api_private_ipinfo_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/GET_api_private_ipinfo_1.snaphost @@ -1,7 +1,7 @@ HTTP/2.0 200 OK Content-Length: 38 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:26 GMT +Date: Thu, 24 Jul 2025 15:05:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; @@ -9,8 +9,8 @@ X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Java-Method: ApiPrivateIpInfoResource::getIpInfo X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 -{"currentIpv4Address":"64.236.193.18"} \ No newline at end of file +{"currentIpv4Address":"4.236.159.225"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost deleted file mode 100644 index ed3525ef01..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 477 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersAccessListResource::addApiUserAccessList -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"64.236.193.18/32","count":0,"created":"2025-07-22T05:11:27Z","ipAddress":"64.236.193.18","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList/64.236.193.18","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost new file mode 100644 index 0000000000..63236b6d8b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Create_Current_IP/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 477 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 242 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersAccessListResource::addApiUserAccessList +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"4.236.159.225/32","count":0,"created":"2025-07-24T15:05:01Z","ipAddress":"4.236.159.225","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList/4.236.159.225","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_1.snaphost deleted file mode 100644 index 9b34068214..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 91 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_1.snaphost new file mode 100644 index 0000000000..477feaf548 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_64.236.193.18_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_64.236.193.18_1.snaphost deleted file mode 100644 index 87f86e731a..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_64.236.193.18_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 131 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersAccessListResource::deleteUserAccessListEntry -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_4.236.159.225_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_4.236.159.225_1.snaphost new file mode 100644 index 0000000000..7d49104464 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete#01/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_4.236.159.225_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 158 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersAccessListResource::deleteUserAccessListEntry +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_192.168.0.92_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_192.168.0.92_1.snaphost deleted file mode 100644 index ac92f2bf00..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_192.168.0.92_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersAccessListResource::deleteUserAccessListEntry -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_192.168.0.245_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_192.168.0.245_1.snaphost new file mode 100644 index 0000000000..9792a57753 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_192.168.0.245_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersAccessListResource::deleteUserAccessListEntry +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost deleted file mode 100644 index aac86bc412..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d7da799aa2ae9e804ad_accessList_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 474 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 56 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersAccessListResource::getApiUserAccessList -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.92/32","count":0,"created":"2025-07-22T05:11:25Z","ipAddress":"192.168.0.92","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad/accessList/192.168.0.92","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost new file mode 100644 index 0000000000..b84403d55a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9bb448981053345bb4_accessList_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 477 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 81 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersAccessListResource::getApiUserAccessList +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.245/32","count":0,"created":"2025-07-24T15:05:00Z","ipAddress":"192.168.0.245","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4/accessList/192.168.0.245","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost index 13ed2a4f31..d2b6e1d5e7 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 339 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT +Date: Thu, 24 Jul 2025 15:04:59 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 171 +X-Envoy-Upstream-Service-Time: 158 X-Frame-Options: DENY X-Java-Method: ApiOrganizationApiUsersResource::createApiUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"desc":"e2e-test-helper","id":"687f1d7da799aa2ae9e804ad","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d7da799aa2ae9e804ad","rel":"self"}],"privateKey":"0c4f295b-e84a-49dc-a1f5-4fdda4b873a0","publicKey":"ihedyomy","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file +{"desc":"e2e-test-helper","id":"68824b9bb448981053345bb4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9bb448981053345bb4","rel":"self"}],"privateKey":"c33d0cf0-938e-48e6-bfe8-5efc460ca4f6","publicKey":"gomzfufi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/memory.json b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/memory.json index b649a52dbc..76bbe38b8d 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeyAccessList/memory.json @@ -1 +1 @@ -{"TestAtlasOrgAPIKeyAccessList/rand":"XA=="} \ No newline at end of file +{"TestAtlasOrgAPIKeyAccessList/rand":"9Q=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost index 2e44e2dc36..387dafb469 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 342 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:28 GMT +Date: Thu, 24 Jul 2025 15:05:02 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 154 +X-Envoy-Upstream-Service-Time: 160 X-Frame-Options: DENY X-Java-Method: ApiOrganizationApiUsersResource::createApiUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"desc":"e2e-test-atlas-org","id":"687f1d8144f1ab3f8423142a","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8144f1ab3f8423142a","rel":"self"}],"privateKey":"fe28378f-1f9f-41df-a916-d0e69451428c","publicKey":"hcfsbyvu","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file +{"desc":"e2e-test-atlas-org","id":"68824b9e42be0f23307f36e4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9e42be0f23307f36e4","rel":"self"}],"privateKey":"636fc712-27b0-436c-a1fb-a574be5a4bf9","publicKey":"rprqzzjl","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost deleted file mode 100644 index d100a155cd..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost new file mode 100644 index 0000000000..6274f153a8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost deleted file mode 100644 index c9a54f7a56..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 345 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 48 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersResource::getApiUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"desc":"e2e-test-atlas-org-updated","id":"687f1d8144f1ab3f8423142a","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8144f1ab3f8423142a","rel":"self"}],"privateKey":"********-****-****-d0e69451428c","publicKey":"hcfsbyvu","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost new file mode 100644 index 0000000000..456231ed31 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 345 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 48 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersResource::getApiUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"desc":"e2e-test-atlas-org-updated","id":"68824b9e42be0f23307f36e4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9e42be0f23307f36e4","rel":"self"}],"privateKey":"********-****-****-a574be5a4bf9","publicKey":"rprqzzjl","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost index 03c899b856..7864c1b13f 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 6011 +Content-Length: 6075 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT +Date: Thu, 24 Jul 2025 15:05:02 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 67 +X-Envoy-Upstream-Service-Time: 55 X-Frame-Options: DENY X-Java-Method: ApiOrganizationApiUsersResource::getApiUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"Bianca key","id":"66df1cdc9d75e9760bad2c8b","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/66df1cdc9d75e9760bad2c8b","rel":"self"}],"privateKey":"********-****-****-b0f76b821fd3","publicKey":"cbpvbeke","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"melanija-test","id":"6788f733ce09c27ebade8d29","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6788f733ce09c27ebade8d29","rel":"self"}],"privateKey":"********-****-****-fc24f9213325","publicKey":"gtlpdevb","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-atlas-org","id":"687f1d8144f1ab3f8423142a","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8144f1ab3f8423142a","rel":"self"}],"privateKey":"********-****-****-d0e69451428c","publicKey":"hcfsbyvu","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"65e1d86b6c817a42f3f9e4b2","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65e1d86b6c817a42f3f9e4b2","rel":"self"}],"privateKey":"********-****-****-d2cd9108b9c6","publicKey":"ksrveyom","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Andrea's Keys","id":"664b5ab59a981a30544e3996","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/664b5ab59a981a30544e3996","rel":"self"}],"privateKey":"********-****-****-686587e6e7af","publicKey":"laqkcexi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"GH Actions Snapshots","id":"6835e821c794bf2ac0a9ec73","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6835e821c794bf2ac0a9ec73","rel":"self"}],"privateKey":"********-****-****-ebb4d167beea","publicKey":"nmtxqlkl","roles":[{"groupId":"687f1d79a799aa2ae9e803dd","roleName":"GROUP_OWNER"},{"groupId":"687f1d6ea799aa2ae9e800fa","roleName":"GROUP_OWNER"},{"groupId":"687f1d7f44f1ab3f8423133f","roleName":"GROUP_OWNER"},{"groupId":"687f1d7b44f1ab3f84231249","roleName":"GROUP_OWNER"},{"groupId":"687f1d7fa799aa2ae9e804de","roleName":"GROUP_OWNER"},{"groupId":"687f1d7d44f1ab3f842312d4","roleName":"GROUP_OWNER"},{"groupId":"68369c0d9806252ca7c427d1","roleName":"GROUP_OWNER"},{"groupId":"687f1d7444f1ab3f84231064","roleName":"GROUP_OWNER"},{"groupId":"687f1d7a44f1ab3f842311cb","roleName":"GROUP_OWNER"},{"groupId":"687f1d80a799aa2ae9e8054b","roleName":"GROUP_OWNER"},{"groupId":"687f1d7044f1ab3f84230fb6","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"687f1d7044f1ab3f84230f92","roleName":"GROUP_OWNER"},{"groupId":"687f1d7f44f1ab3f8423133e","roleName":"GROUP_OWNER"},{"groupId":"687f1d7544f1ab3f842310d1","roleName":"GROUP_OWNER"},{"groupId":"687f1d78a799aa2ae9e80368","roleName":"GROUP_OWNER"},{"groupId":"687f1d6f44f1ab3f84230f31","roleName":"GROUP_OWNER"},{"groupId":"687f1d6ea799aa2ae9e8009f","roleName":"GROUP_OWNER"}]},{"desc":"yeliz-test","id":"684285efe9900637b4a61ead","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/684285efe9900637b4a61ead","rel":"self"}],"privateKey":"********-****-****-ab4cb1ea02f2","publicKey":"onlqcmle","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-org","id":"613b62958ec48f1af7520a5d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/613b62958ec48f1af7520a5d","rel":"self"}],"privateKey":"********-****-****-5e62b2d3652d","publicKey":"rmeffxgz","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"Evergreen E2E","id":"5f3b9a38320c484ff32cbf5c","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/5f3b9a38320c484ff32cbf5c","rel":"self"}],"privateKey":"********-****-****-d4a6d03057ae","publicKey":"tevdziqg","roles":[{"groupId":"6836f15a05517854c0dda381","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"atlas-cli-plugin-gsa-e2e-test","id":"68416cdde5070e2113965701","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68416cdde5070e2113965701","rel":"self"}],"privateKey":"********-****-****-9c7006b880e3","publicKey":"tgvjrepi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Bianca","id":"68307e0a06d3a97796e4f5c3","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68307e0a06d3a97796e4f5c3","rel":"self"}],"privateKey":"********-****-****-b2bae1a2a730","publicKey":"xtdbqwxr","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]}],"totalCount":13} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"Bianca key","id":"66df1cdc9d75e9760bad2c8b","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/66df1cdc9d75e9760bad2c8b","rel":"self"}],"privateKey":"********-****-****-b0f76b821fd3","publicKey":"cbpvbeke","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"melanija-test","id":"6788f733ce09c27ebade8d29","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6788f733ce09c27ebade8d29","rel":"self"}],"privateKey":"********-****-****-fc24f9213325","publicKey":"gtlpdevb","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"65e1d86b6c817a42f3f9e4b2","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65e1d86b6c817a42f3f9e4b2","rel":"self"}],"privateKey":"********-****-****-d2cd9108b9c6","publicKey":"ksrveyom","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Andrea's Keys","id":"664b5ab59a981a30544e3996","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/664b5ab59a981a30544e3996","rel":"self"}],"privateKey":"********-****-****-686587e6e7af","publicKey":"laqkcexi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"GH Actions Snapshots","id":"6835e821c794bf2ac0a9ec73","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6835e821c794bf2ac0a9ec73","rel":"self"}],"privateKey":"********-****-****-ebb4d167beea","publicKey":"nmtxqlkl","roles":[{"groupId":"68824b9cb448981053345c3f","roleName":"GROUP_OWNER"},{"groupId":"68824b8db448981053345ab6","roleName":"GROUP_OWNER"},{"groupId":"68824b9842be0f23307f35ad","roleName":"GROUP_OWNER"},{"groupId":"68824b9cb448981053345bce","roleName":"GROUP_OWNER"},{"groupId":"6881c09b78d9415ffc817d53","roleName":"GROUP_OWNER"},{"groupId":"68824b8d42be0f23307f34b2","roleName":"GROUP_OWNER"},{"groupId":"68824b9a42be0f23307f3610","roleName":"GROUP_OWNER"},{"groupId":"6881c0e078d9415ffc8185b9","roleName":"GROUP_OWNER"},{"groupId":"68824b8642be0f23307f33bd","roleName":"GROUP_OWNER"},{"groupId":"68824b8c42be0f23307f3451","roleName":"GROUP_OWNER"},{"groupId":"68824b9042be0f23307f352b","roleName":"GROUP_OWNER"},{"groupId":"68824b9c42be0f23307f3673","roleName":"GROUP_OWNER"},{"groupId":"6881c0b9b7b97c2537f63adc","roleName":"GROUP_OWNER"},{"groupId":"68824b8fb448981053345b19","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"68369c0d9806252ca7c427d1","roleName":"GROUP_OWNER"},{"groupId":"68824b89b44898105334593e","roleName":"GROUP_OWNER"},{"groupId":"68824b9db448981053345c72","roleName":"GROUP_OWNER"},{"groupId":"68824b8bb448981053345a2e","roleName":"GROUP_OWNER"}]},{"desc":"yeliz-test","id":"684285efe9900637b4a61ead","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/684285efe9900637b4a61ead","rel":"self"}],"privateKey":"********-****-****-ab4cb1ea02f2","publicKey":"onlqcmle","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-org","id":"613b62958ec48f1af7520a5d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/613b62958ec48f1af7520a5d","rel":"self"}],"privateKey":"********-****-****-5e62b2d3652d","publicKey":"rmeffxgz","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"e2e-test-atlas-org","id":"68824b9e42be0f23307f36e4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9e42be0f23307f36e4","rel":"self"}],"privateKey":"********-****-****-a574be5a4bf9","publicKey":"rprqzzjl","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"Evergreen E2E","id":"5f3b9a38320c484ff32cbf5c","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/5f3b9a38320c484ff32cbf5c","rel":"self"}],"privateKey":"********-****-****-d4a6d03057ae","publicKey":"tevdziqg","roles":[{"groupId":"6836f15a05517854c0dda381","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"atlas-cli-plugin-gsa-e2e-test","id":"68416cdde5070e2113965701","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68416cdde5070e2113965701","rel":"self"}],"privateKey":"********-****-****-9c7006b880e3","publicKey":"tgvjrepi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Bianca","id":"68307e0a06d3a97796e4f5c3","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68307e0a06d3a97796e4f5c3","rel":"self"}],"privateKey":"********-****-****-b2bae1a2a730","publicKey":"xtdbqwxr","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"}]}],"totalCount":13} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost index 2b6dfbb96e..ea59cbe5f2 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 6011 +Content-Length: 6075 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT +Date: Thu, 24 Jul 2025 15:05:02 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 65 +X-Envoy-Upstream-Service-Time: 64 X-Frame-Options: DENY X-Java-Method: ApiOrganizationApiUsersResource::getApiUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"Bianca key","id":"66df1cdc9d75e9760bad2c8b","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/66df1cdc9d75e9760bad2c8b","rel":"self"}],"privateKey":"********-****-****-b0f76b821fd3","publicKey":"cbpvbeke","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"melanija-test","id":"6788f733ce09c27ebade8d29","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6788f733ce09c27ebade8d29","rel":"self"}],"privateKey":"********-****-****-fc24f9213325","publicKey":"gtlpdevb","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-atlas-org","id":"687f1d8144f1ab3f8423142a","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8144f1ab3f8423142a","rel":"self"}],"privateKey":"********-****-****-d0e69451428c","publicKey":"hcfsbyvu","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"65e1d86b6c817a42f3f9e4b2","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65e1d86b6c817a42f3f9e4b2","rel":"self"}],"privateKey":"********-****-****-d2cd9108b9c6","publicKey":"ksrveyom","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Andrea's Keys","id":"664b5ab59a981a30544e3996","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/664b5ab59a981a30544e3996","rel":"self"}],"privateKey":"********-****-****-686587e6e7af","publicKey":"laqkcexi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"GH Actions Snapshots","id":"6835e821c794bf2ac0a9ec73","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6835e821c794bf2ac0a9ec73","rel":"self"}],"privateKey":"********-****-****-ebb4d167beea","publicKey":"nmtxqlkl","roles":[{"groupId":"687f1d79a799aa2ae9e803dd","roleName":"GROUP_OWNER"},{"groupId":"687f1d6ea799aa2ae9e800fa","roleName":"GROUP_OWNER"},{"groupId":"687f1d7f44f1ab3f8423133f","roleName":"GROUP_OWNER"},{"groupId":"687f1d7b44f1ab3f84231249","roleName":"GROUP_OWNER"},{"groupId":"687f1d7fa799aa2ae9e804de","roleName":"GROUP_OWNER"},{"groupId":"687f1d7d44f1ab3f842312d4","roleName":"GROUP_OWNER"},{"groupId":"68369c0d9806252ca7c427d1","roleName":"GROUP_OWNER"},{"groupId":"687f1d7444f1ab3f84231064","roleName":"GROUP_OWNER"},{"groupId":"687f1d7a44f1ab3f842311cb","roleName":"GROUP_OWNER"},{"groupId":"687f1d80a799aa2ae9e8054b","roleName":"GROUP_OWNER"},{"groupId":"687f1d7044f1ab3f84230fb6","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"687f1d7044f1ab3f84230f92","roleName":"GROUP_OWNER"},{"groupId":"687f1d7f44f1ab3f8423133e","roleName":"GROUP_OWNER"},{"groupId":"687f1d7544f1ab3f842310d1","roleName":"GROUP_OWNER"},{"groupId":"687f1d78a799aa2ae9e80368","roleName":"GROUP_OWNER"},{"groupId":"687f1d6f44f1ab3f84230f31","roleName":"GROUP_OWNER"},{"groupId":"687f1d6ea799aa2ae9e8009f","roleName":"GROUP_OWNER"}]},{"desc":"yeliz-test","id":"684285efe9900637b4a61ead","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/684285efe9900637b4a61ead","rel":"self"}],"privateKey":"********-****-****-ab4cb1ea02f2","publicKey":"onlqcmle","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-org","id":"613b62958ec48f1af7520a5d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/613b62958ec48f1af7520a5d","rel":"self"}],"privateKey":"********-****-****-5e62b2d3652d","publicKey":"rmeffxgz","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"Evergreen E2E","id":"5f3b9a38320c484ff32cbf5c","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/5f3b9a38320c484ff32cbf5c","rel":"self"}],"privateKey":"********-****-****-d4a6d03057ae","publicKey":"tevdziqg","roles":[{"groupId":"6836f15a05517854c0dda381","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"atlas-cli-plugin-gsa-e2e-test","id":"68416cdde5070e2113965701","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68416cdde5070e2113965701","rel":"self"}],"privateKey":"********-****-****-9c7006b880e3","publicKey":"tgvjrepi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Bianca","id":"68307e0a06d3a97796e4f5c3","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68307e0a06d3a97796e4f5c3","rel":"self"}],"privateKey":"********-****-****-b2bae1a2a730","publicKey":"xtdbqwxr","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]}],"totalCount":13} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"Bianca key","id":"66df1cdc9d75e9760bad2c8b","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/66df1cdc9d75e9760bad2c8b","rel":"self"}],"privateKey":"********-****-****-b0f76b821fd3","publicKey":"cbpvbeke","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"melanija-test","id":"6788f733ce09c27ebade8d29","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6788f733ce09c27ebade8d29","rel":"self"}],"privateKey":"********-****-****-fc24f9213325","publicKey":"gtlpdevb","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"65e1d86b6c817a42f3f9e4b2","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65e1d86b6c817a42f3f9e4b2","rel":"self"}],"privateKey":"********-****-****-d2cd9108b9c6","publicKey":"ksrveyom","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Andrea's Keys","id":"664b5ab59a981a30544e3996","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/664b5ab59a981a30544e3996","rel":"self"}],"privateKey":"********-****-****-686587e6e7af","publicKey":"laqkcexi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"GH Actions Snapshots","id":"6835e821c794bf2ac0a9ec73","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6835e821c794bf2ac0a9ec73","rel":"self"}],"privateKey":"********-****-****-ebb4d167beea","publicKey":"nmtxqlkl","roles":[{"groupId":"68824b9cb448981053345c3f","roleName":"GROUP_OWNER"},{"groupId":"68824b8db448981053345ab6","roleName":"GROUP_OWNER"},{"groupId":"68824b9842be0f23307f35ad","roleName":"GROUP_OWNER"},{"groupId":"68824b9cb448981053345bce","roleName":"GROUP_OWNER"},{"groupId":"6881c09b78d9415ffc817d53","roleName":"GROUP_OWNER"},{"groupId":"68824b8d42be0f23307f34b2","roleName":"GROUP_OWNER"},{"groupId":"68824b9a42be0f23307f3610","roleName":"GROUP_OWNER"},{"groupId":"6881c0e078d9415ffc8185b9","roleName":"GROUP_OWNER"},{"groupId":"68824b8642be0f23307f33bd","roleName":"GROUP_OWNER"},{"groupId":"68824b8c42be0f23307f3451","roleName":"GROUP_OWNER"},{"groupId":"68824b9042be0f23307f352b","roleName":"GROUP_OWNER"},{"groupId":"68824b9c42be0f23307f3673","roleName":"GROUP_OWNER"},{"groupId":"6881c0b9b7b97c2537f63adc","roleName":"GROUP_OWNER"},{"groupId":"68824b8fb448981053345b19","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"68369c0d9806252ca7c427d1","roleName":"GROUP_OWNER"},{"groupId":"68824b89b44898105334593e","roleName":"GROUP_OWNER"},{"groupId":"68824b9db448981053345c72","roleName":"GROUP_OWNER"},{"groupId":"68824b8bb448981053345a2e","roleName":"GROUP_OWNER"}]},{"desc":"yeliz-test","id":"684285efe9900637b4a61ead","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/684285efe9900637b4a61ead","rel":"self"}],"privateKey":"********-****-****-ab4cb1ea02f2","publicKey":"onlqcmle","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test-org","id":"613b62958ec48f1af7520a5d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/613b62958ec48f1af7520a5d","rel":"self"}],"privateKey":"********-****-****-5e62b2d3652d","publicKey":"rmeffxgz","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"e2e-test-atlas-org","id":"68824b9e42be0f23307f36e4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9e42be0f23307f36e4","rel":"self"}],"privateKey":"********-****-****-a574be5a4bf9","publicKey":"rprqzzjl","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]},{"desc":"Evergreen E2E","id":"5f3b9a38320c484ff32cbf5c","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/5f3b9a38320c484ff32cbf5c","rel":"self"}],"privateKey":"********-****-****-d4a6d03057ae","publicKey":"tevdziqg","roles":[{"groupId":"6836f15a05517854c0dda381","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"atlas-cli-plugin-gsa-e2e-test","id":"68416cdde5070e2113965701","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68416cdde5070e2113965701","rel":"self"}],"privateKey":"********-****-****-9c7006b880e3","publicKey":"tgvjrepi","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"Bianca","id":"68307e0a06d3a97796e4f5c3","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68307e0a06d3a97796e4f5c3","rel":"self"}],"privateKey":"********-****-****-b2bae1a2a730","publicKey":"xtdbqwxr","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"}]}],"totalCount":13} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost deleted file mode 100644 index 61922d860b..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8144f1ab3f8423142a_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 345 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersResource::updateApiUserDescAndRoles -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"desc":"e2e-test-atlas-org-updated","id":"687f1d8144f1ab3f8423142a","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8144f1ab3f8423142a","rel":"self"}],"privateKey":"********-****-****-d0e69451428c","publicKey":"hcfsbyvu","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost new file mode 100644 index 0000000000..76d0558926 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgAPIKeys/Update/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824b9e42be0f23307f36e4_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 345 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 83 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersResource::updateApiUserDescAndRoles +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"desc":"e2e-test-atlas-org-updated","id":"68824b9e42be0f23307f36e4","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824b9e42be0f23307f36e4","rel":"self"}],"privateKey":"********-****-****-a574be5a4bf9","publicKey":"rprqzzjl","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost deleted file mode 100644 index 984e297e62..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 50 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::deleteInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost new file mode 100644 index 0000000000..1f2249e17e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 48 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::deleteInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d85a799aa2ae9e8062e_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d85a799aa2ae9e8062e_1.snaphost deleted file mode 100644 index cc60ab541f..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d85a799aa2ae9e8062e_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 58 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::deleteInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba1b448981053345d2b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba1b448981053345d2b_1.snaphost new file mode 100644 index 0000000000..dcfcfb9af5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Delete_Invitation_from_File_Test/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba1b448981053345d2b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 50 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::deleteInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost deleted file mode 100644 index fcf4c4617c..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 289 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 43 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::getInvitationByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost new file mode 100644 index 0000000000..0a52655275 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 289 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:06 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 62 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::getInvitationByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost index ae3da93437..ca9825cb60 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK Content-Length: 289 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:31 GMT +Date: Thu, 24 Jul 2025 15:05:04 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 599 +X-Envoy-Upstream-Service-Time: 620 X-Frame-Options: DENY X-Java-Method: ApiOrganizationInvitationResource::createInvitations X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File#01/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File#01/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost index 435daf9ba7..0846294532 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File#01/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File#01/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK -Content-Length: 297 +Content-Length: 296 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:33 GMT +Date: Thu, 24 Jul 2025 15:05:05 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 812 +X-Envoy-Upstream-Service-Time: 591 X-Frame-Options: DENY X-Java-Method: ApiOrganizationInvitationResource::createInvitations X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"createdAt":"2025-07-22T05:11:33Z","expiresAt":"2025-08-21T05:11:33Z","groupRoleAssignments":[],"id":"687f1d85a799aa2ae9e8062e","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-732@mongodb.com"} \ No newline at end of file +{"createdAt":"2025-07-24T15:05:05Z","expiresAt":"2025-08-23T15:05:05Z","groupRoleAssignments":[],"id":"68824ba1b448981053345d2b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-31@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost index acb8c1f6f5..37d1606cd1 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Invite_with_File/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK Content-Length: 297 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:32 GMT +Date: Thu, 24 Jul 2025 15:05:05 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 154 +X-Envoy-Upstream-Service-Time: 163 X-Frame-Options: DENY X-Java-Method: ApiOrganizationInvitationResource::createInvitations X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"createdAt":"2025-07-22T05:11:32Z","expiresAt":"2025-08-21T05:11:32Z","groupRoleAssignments":[],"id":"687f1d8444f1ab3f8423146b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-602@mongodb.com"} \ No newline at end of file +{"createdAt":"2025-07-24T15:05:05Z","expiresAt":"2025-08-23T15:05:05Z","groupRoleAssignments":[],"id":"68824ba142be0f23307f37a3","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-354@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost index 839c89322b..454c41e33e 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK -Content-Length: 887 +Content-Length: 2162 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT +Date: Thu, 24 Jul 2025 15:05:06 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 46 +X-Envoy-Upstream-Service-Time: 59 X-Frame-Options: DENY X-Java-Method: ApiOrganizationInvitationResource::getInvitations X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -[{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-228@mongodb.com"},{"createdAt":"2025-07-22T05:11:32Z","expiresAt":"2025-08-21T05:11:32Z","groupRoleAssignments":[],"id":"687f1d8444f1ab3f8423146b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-602@mongodb.com"},{"createdAt":"2025-07-22T05:11:33Z","expiresAt":"2025-08-21T05:11:33Z","groupRoleAssignments":[],"id":"687f1d85a799aa2ae9e8062e","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-732@mongodb.com"}] \ No newline at end of file +[{"createdAt":"2025-07-24T05:53:29Z","expiresAt":"2025-08-23T05:53:29Z","groupRoleAssignments":[],"id":"6881ca5978d9415ffc81aa42","inviterUsername":"tevdziqg","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"cli-test-2118-2b6741c4b99966945b003a1a2d2b0877920bac5c@moongodb.com"},{"createdAt":"2025-07-24T10:24:42Z","expiresAt":"2025-08-23T10:24:42Z","groupRoleAssignments":[],"id":"688209ea78d9415ffc81f1bf","inviterUsername":"tevdziqg","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"cli-test-9254-2b6741c4b99966945b003a1a2d2b0877920bac5c@moongodb.com"},{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_MEMBER"],"teamIds":[],"username":"test-503@mongodb.com"},{"createdAt":"2025-07-24T15:05:05Z","expiresAt":"2025-08-23T15:05:05Z","groupRoleAssignments":[],"id":"68824ba1b448981053345d2b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-31@mongodb.com"},{"createdAt":"2025-07-24T15:05:05Z","expiresAt":"2025-08-23T15:05:05Z","groupRoleAssignments":[],"id":"68824ba142be0f23307f37a3","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-354@mongodb.com"},{"createdAt":"2025-07-24T05:53:02Z","expiresAt":"2025-08-23T05:53:02Z","groupRoleAssignments":[],"id":"6881ca3eb7b97c2537f65f96","inviterUsername":"tevdziqg","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-802@mongodb.com"},{"createdAt":"2025-07-24T10:24:18Z","expiresAt":"2025-08-23T10:24:18Z","groupRoleAssignments":[],"id":"688209d2b7b97c2537f6a554","inviterUsername":"tevdziqg","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-file-936@mongodb.com"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost deleted file mode 100644 index a7a32098b2..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 292 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 47 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost new file mode 100644 index 0000000000..36c20de1a8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_ID/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 292 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 45 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_email/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_email/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost index bd0fa0ac12..1a29dd6802 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_email/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_by_email/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK Content-Length: 292 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT +Date: Thu, 24 Jul 2025 15:05:06 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 +X-Envoy-Upstream-Service-Time: 59 X-Frame-Options: DENY X-Java-Method: ApiOrganizationInvitationResource::editInvitations X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_READ_ONLY"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost deleted file mode 100644 index 8f7e48db0d..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 296 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 49 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_GROUP_CREATOR"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost new file mode 100644 index 0000000000..df09132a88 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File#01/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 296 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 57 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_GROUP_CREATOR"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost deleted file mode 100644 index c03b8e322e..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_687f1d8344f1ab3f84231459_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 296 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 50 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:31Z","expiresAt":"2025-08-21T05:11:31Z","groupRoleAssignments":[],"id":"687f1d8344f1ab3f84231459","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_GROUP_CREATOR"],"teamIds":[],"username":"test-228@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost new file mode 100644 index 0000000000..5579e90724 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/Update_with_File/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_invites_68824ba042be0f23307f377b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 296 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 59 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationInvitationResource::editInvitationsByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:04Z","expiresAt":"2025-08-23T15:05:04Z","groupRoleAssignments":[],"id":"68824ba042be0f23307f377b","inviterUsername":"nmtxqlkl","orgId":"a0123456789abcdef012345a","orgName":"Atlas CLI E2E","roles":["ORG_GROUP_CREATOR"],"teamIds":[],"username":"test-503@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/memory.json b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/memory.json index f375665602..006bab5a16 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgInvitations/memory.json @@ -1 +1 @@ -{"TestAtlasOrgInvitations/Invite_with_File#01/randFile2":"Atw=","TestAtlasOrgInvitations/Invite_with_File/randFile":"Alo=","TestAtlasOrgInvitations/Update_with_File#01/randFile4":"Azg=","TestAtlasOrgInvitations/Update_with_File/randFile3":"ATc=","TestAtlasOrgInvitations/rand":"5A=="} \ No newline at end of file +{"TestAtlasOrgInvitations/Invite_with_File#01/randFile2":"Hw==","TestAtlasOrgInvitations/Invite_with_File/randFile":"AWI=","TestAtlasOrgInvitations/Update_with_File#01/randFile4":"Aco=","TestAtlasOrgInvitations/Update_with_File/randFile3":"AjY=","TestAtlasOrgInvitations/rand":"Afc="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgs/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgs/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_1.snaphost index 3e32d07004..9a9174439f 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgs/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgs/Describe/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 575 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:37 GMT +Date: Thu, 24 Jul 2025 15:05:08 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 43 +X-Envoy-Upstream-Service-Time: 52 X-Frame-Options: DENY X-Java-Method: ApiOrganizationsResource::getOrg X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"id":"a0123456789abcdef012345a","isDeleted":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/groups","rel":"https://cloud.mongodb.com/groups"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams","rel":"https://cloud.mongodb.com/teams"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users","rel":"https://cloud.mongodb.com/users"}],"name":"Atlas CLI E2E","skipDefaultAlertsSettings":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgs/List/GET_api_atlas_v2_orgs_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgs/List/GET_api_atlas_v2_orgs_1.snaphost index b219e84f2a..444ae605bc 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgs/List/GET_api_atlas_v2_orgs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgs/List/GET_api_atlas_v2_orgs_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 361 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:37 GMT +Date: Thu, 24 Jul 2025 15:05:08 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 56 +X-Envoy-Upstream-Service-Time: 53 X-Frame-Options: DENY X-Java-Method: ApiOrganizationsResource::getAllOrgs X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs?includeCount=true&name=&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"a0123456789abcdef012345a","isDeleted":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a","rel":"self"}],"name":"Atlas CLI E2E","skipDefaultAlertsSettings":false}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgs/List_Org_Users/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasOrgs/List_Org_Users/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost index 842f760bc0..e621ddb984 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgs/List_Org_Users/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgs/List_Org_Users/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 6659 +Content-Length: 7951 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:38 GMT +Date: Thu, 24 Jul 2025 15:05:09 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 281 +X-Envoy-Upstream-Service-Time: 223 X-Frame-Options: DENY X-Java-Method: ApiOrganizationUsersResource::getOrganizationUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2021-05-06T18:17:36Z","firstName":"Ciprian","id":"609432c05841544134fb92c0","lastAuth":"2025-04-02T08:30:04Z","lastName":"Tibulca","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"ciprian.tibulca@mongodb.com"},{"country":"IE","createdAt":"2020-01-10T11:55:55Z","firstName":"Colm","id":"5e18664b7a3e5a55893d374a","lastAuth":"2025-05-28T14:20:21Z","lastName":"Quinn","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"687f1d84a799aa2ae9e805b9","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7044f1ab3f84230f92","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7044f1ab3f84230fb6","groupRoles":["GROUP_OWNER"]},{"groupId":"6836f15a05517854c0dda381","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d6ea799aa2ae9e8009f","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d78a799aa2ae9e80368","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d79a799aa2ae9e803dd","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d8444f1ab3f84231469","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d6f44f1ab3f84230f31","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7a44f1ab3f842311cb","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7b44f1ab3f84231249","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7fa799aa2ae9e804de","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d6ea799aa2ae9e800fa","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7544f1ab3f842310d1","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7f44f1ab3f8423133e","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7f44f1ab3f8423133f","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7444f1ab3f84231064","groupRoles":["GROUP_OWNER"]},{"groupId":"68369c0d9806252ca7c427d1","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d80a799aa2ae9e8054b","groupRoles":["GROUP_OWNER"]},{"groupId":"687f1d7d44f1ab3f842312d4","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"colm.quinn@mongodb.com"},{"country":"US","createdAt":"2023-06-06T15:09:44Z","firstName":"Drew","id":"647f4c38fe95ad3167e98a78","lastAuth":"2025-07-22T00:27:44Z","lastName":"Beckmen","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"drew.beckmen@mongodb.com"},{"country":"IE","createdAt":"2024-07-16T13:52:32Z","firstName":"Filip","id":"66967b205e498f3cfc72c9b8","lastAuth":"2024-08-01T09:21:39Z","lastName":"Cirtog","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"filip.cirtog@mongodb.com"},{"country":"IE","createdAt":"2021-03-18T11:49:12Z","firstName":"Filipe","id":"60533e389b6f8f2d146a13f1","lastAuth":"2025-07-21T09:25:56Z","lastName":"Constantinov Menezes","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"filipe.menezes@mongodb.com"},{"country":"IE","createdAt":"2020-02-04T16:41:45Z","firstName":"Gustavo","id":"5e399ec9f10fab1f92b44834","lastAuth":"2025-05-29T11:44:48Z","lastName":"Bazan","mobileNumber":"+353872529768","orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"gustavo.bazan@mongodb.com"},{"country":"US","createdAt":"2019-11-25T15:55:57Z","firstName":"Jack","id":"5ddbf98d7a3e5a77d8174cf6","lastAuth":"2025-07-21T10:25:17Z","lastName":"Wearden","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"jack.wearden@mongodb.com"},{"country":"IE","createdAt":"2024-01-15T10:32:13Z","firstName":"Jeroen","id":"65a509ade774f41fad2d913c","lastAuth":"2025-04-25T10:30:17Z","lastName":"Vervaeke","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"jeroen.vervaeke@mongodb.com"},{"country":"ES","createdAt":"2023-10-16T09:22:04Z","firstName":"Jose","id":"652d00bcbf20177eb39f0acf","lastAuth":"2025-07-07T17:47:22Z","lastName":"Vázquez González","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_OWNER","ORG_MEMBER"]},"teamIds":[],"username":"jose.vazquez@mongodb.com"},{"country":"ES","createdAt":"2023-09-05T15:58:48Z","firstName":"Leo","id":"64f7503870ae433739a66b9d","lastAuth":"2025-07-21T08:51:34Z","lastName":"Antoli","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_GROUP_CREATOR","ORG_BILLING_ADMIN","ORG_OWNER","ORG_READ_ONLY","ORG_BILLING_READ_ONLY","ORG_MEMBER"]},"teamIds":[],"username":"leo.antoli@mongodb.com"},{"country":"US","createdAt":"2019-11-25T23:07:58Z","firstName":"Teppei","id":"5ddc5ece7a3e5a14adb39129","lastAuth":"2025-07-21T13:50:27Z","lastName":"Suzuki","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"tepp.suzuki@mongodb.com"},{"id":"687f1d8444f1ab3f8423146c","invitationCreatedAt":"2025-07-22T05:11:32Z","invitationExpiresAt":"2025-08-21T05:11:32Z","inviterUsername":"nmtxqlkl","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"test-file-602@mongodb.com"}],"totalCount":14} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2021-05-06T18:17:36Z","firstName":"Ciprian","id":"609432c05841544134fb92c0","lastAuth":"2025-04-02T08:30:04Z","lastName":"Tibulca","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"ciprian.tibulca@mongodb.com"},{"id":"6881ca5978d9415ffc81aa40","invitationCreatedAt":"2025-07-24T05:53:29Z","invitationExpiresAt":"2025-08-23T05:53:29Z","inviterUsername":"tevdziqg","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"cli-test-2118-2b6741c4b99966945b003a1a2d2b0877920bac5c@moongodb.com"},{"id":"688209ea78d9415ffc81f1bd","invitationCreatedAt":"2025-07-24T10:24:42Z","invitationExpiresAt":"2025-08-23T10:24:42Z","inviterUsername":"tevdziqg","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"cli-test-9254-2b6741c4b99966945b003a1a2d2b0877920bac5c@moongodb.com"},{"country":"IE","createdAt":"2020-01-10T11:55:55Z","firstName":"Colm","id":"5e18664b7a3e5a55893d374a","lastAuth":"2025-05-28T14:20:21Z","lastName":"Quinn","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"68824b9cb448981053345c3f","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9c42be0f23307f3673","groupRoles":["GROUP_OWNER"]},{"groupId":"6836f15a05517854c0dda381","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8c42be0f23307f3451","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8d42be0f23307f34b2","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9a42be0f23307f3610","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9842be0f23307f35ad","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8bb448981053345a2e","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9042be0f23307f352b","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8fb448981053345b19","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9db448981053345c72","groupRoles":["GROUP_OWNER"]},{"groupId":"6881c0e078d9415ffc8185b9","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8642be0f23307f33bd","groupRoles":["GROUP_OWNER"]},{"groupId":"6881c0b9b7b97c2537f63adc","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b9cb448981053345bce","groupRoles":["GROUP_OWNER"]},{"groupId":"6881c09b78d9415ffc817d53","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b8db448981053345ab6","groupRoles":["GROUP_OWNER"]},{"groupId":"68369c0d9806252ca7c427d1","groupRoles":["GROUP_OWNER"]},{"groupId":"68824b89b44898105334593e","groupRoles":["GROUP_OWNER"]},{"groupId":"68824ba4b448981053345d41","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"colm.quinn@mongodb.com"},{"country":"US","createdAt":"2023-06-06T15:09:44Z","firstName":"Drew","id":"647f4c38fe95ad3167e98a78","lastAuth":"2025-07-23T14:14:45Z","lastName":"Beckmen","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"drew.beckmen@mongodb.com"},{"country":"IE","createdAt":"2024-07-16T13:52:32Z","firstName":"Filip","id":"66967b205e498f3cfc72c9b8","lastAuth":"2024-08-01T09:21:39Z","lastName":"Cirtog","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"filip.cirtog@mongodb.com"},{"country":"IE","createdAt":"2021-03-18T11:49:12Z","firstName":"Filipe","id":"60533e389b6f8f2d146a13f1","lastAuth":"2025-07-21T09:25:56Z","lastName":"Constantinov Menezes","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"filipe.menezes@mongodb.com"},{"country":"IE","createdAt":"2020-02-04T16:41:45Z","firstName":"Gustavo","id":"5e399ec9f10fab1f92b44834","lastAuth":"2025-05-29T11:44:48Z","lastName":"Bazan","mobileNumber":"+353872529768","orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"gustavo.bazan@mongodb.com"},{"country":"US","createdAt":"2019-11-25T15:55:57Z","firstName":"Jack","id":"5ddbf98d7a3e5a77d8174cf6","lastAuth":"2025-07-24T13:55:05Z","lastName":"Wearden","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"jack.wearden@mongodb.com"},{"country":"IE","createdAt":"2024-01-15T10:32:13Z","firstName":"Jeroen","id":"65a509ade774f41fad2d913c","lastAuth":"2025-07-24T09:54:25Z","lastName":"Vervaeke","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"jeroen.vervaeke@mongodb.com"},{"country":"ES","createdAt":"2023-10-16T09:22:04Z","firstName":"Jose","id":"652d00bcbf20177eb39f0acf","lastAuth":"2025-07-07T17:47:22Z","lastName":"Vázquez González","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_OWNER","ORG_MEMBER"]},"teamIds":[],"username":"jose.vazquez@mongodb.com"},{"country":"ES","createdAt":"2023-09-05T15:58:48Z","firstName":"Leo","id":"64f7503870ae433739a66b9d","lastAuth":"2025-07-24T13:18:14Z","lastName":"Antoli","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_BILLING_ADMIN","ORG_GROUP_CREATOR","ORG_MEMBER","ORG_OWNER","ORG_READ_ONLY","ORG_BILLING_READ_ONLY"]},"teamIds":[],"username":"leo.antoli@mongodb.com"},{"country":"US","createdAt":"2019-11-25T23:07:58Z","firstName":"Teppei","id":"5ddc5ece7a3e5a14adb39129","lastAuth":"2025-07-22T14:52:11Z","lastName":"Suzuki","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_MEMBER"]},"teamIds":[],"username":"tepp.suzuki@mongodb.com"},{"id":"68824ba142be0f23307f37a4","invitationCreatedAt":"2025-07-24T15:05:05Z","invitationExpiresAt":"2025-08-23T15:05:05Z","inviterUsername":"nmtxqlkl","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"test-file-354@mongodb.com"},{"id":"6881ca3eb7b97c2537f65f97","invitationCreatedAt":"2025-07-24T05:53:02Z","invitationExpiresAt":"2025-08-23T05:53:02Z","inviterUsername":"tevdziqg","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"test-file-802@mongodb.com"},{"id":"688209d2b7b97c2537f6a555","invitationCreatedAt":"2025-07-24T10:24:18Z","invitationExpiresAt":"2025-08-23T10:24:18Z","inviterUsername":"tevdziqg","orgMembershipStatus":"PENDING","roles":{"groupRoleAssignments":[],"orgRoles":["ORG_READ_ONLY"]},"teamIds":[],"username":"test-file-936@mongodb.com"}],"totalCount":18} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasOrgs/memory.json b/test/e2e/testdata/.snapshots/TestAtlasOrgs/memory.json index 605fb2395c..21e37665a6 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasOrgs/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasOrgs/memory.json @@ -1 +1 @@ -{"TestAtlasOrgs/rand":"/g=="} \ No newline at end of file +{"TestAtlasOrgs/rand":"CQ=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost deleted file mode 100644 index 47a61536c0..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 404 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 160 -X-Frame-Options: DENY -X-Java-Method: ApiProjectApiUsersResource::updateApiUserDescAndRoles -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"desc":"e2e-test","id":"687f1d8b44f1ab3f84231539","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8b44f1ab3f84231539","rel":"self"}],"privateKey":"********-****-****-9e0a5a06f0bd","publicKey":"krgngpce","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost new file mode 100644 index 0000000000..7c47652c60 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Assign/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 404 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 158 +X-Frame-Options: DENY +X-Java-Method: ApiProjectApiUsersResource::updateApiUserDescAndRoles +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"desc":"e2e-test","id":"68824ba642be0f23307f38e6","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824ba642be0f23307f38e6","rel":"self"}],"privateKey":"********-****-****-20eba503f83a","publicKey":"iipllbbf","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost index 4893184a4c..7a77f16608 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 397 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:39 GMT +Date: Thu, 24 Jul 2025 15:05:10 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 175 +X-Envoy-Upstream-Service-Time: 156 X-Frame-Options: DENY X-Java-Method: ApiProjectApiUsersResource::createApiUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"desc":"e2e-test","id":"687f1d8b44f1ab3f84231539","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8b44f1ab3f84231539","rel":"self"}],"privateKey":"447c58dd-a105-47fd-aa85-9e0a5a06f0bd","publicKey":"krgngpce","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]} \ No newline at end of file +{"desc":"e2e-test","id":"68824ba642be0f23307f38e6","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824ba642be0f23307f38e6","rel":"self"}],"privateKey":"af7101ca-b879-4e0e-b1ee-20eba503f83a","publicKey":"iipllbbf","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost deleted file mode 100644 index 06fd810177..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 89 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824ba642be0f23307f38e6_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824ba642be0f23307f38e6_1.snaphost new file mode 100644 index 0000000000..877ef37506 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_apiKeys_68824ba642be0f23307f38e6_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 94 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationApiUsersResource::deleteApiUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost deleted file mode 100644 index e253776995..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_687f1d8b44f1ab3f84231539_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 164 -X-Frame-Options: DENY -X-Java-Method: ApiProjectApiUsersResource::removeApiUserFromGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost new file mode 100644 index 0000000000..059d041a3c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_68824ba642be0f23307f38e6_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 179 +X-Frame-Options: DENY +X-Java-Method: ApiProjectApiUsersResource::removeApiUserFromGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost index c4c4085694..d9b2e01b1f 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 1503 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:40 GMT +Date: Thu, 24 Jul 2025 15:05:10 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 86 +X-Envoy-Upstream-Service-Time: 64 X-Frame-Options: DENY X-Java-Method: ApiProjectApiUsersResource::getApiUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"687f1d8b44f1ab3f84231539","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8b44f1ab3f84231539","rel":"self"}],"privateKey":"********-****-****-9e0a5a06f0bd","publicKey":"krgngpce","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]}],"totalCount":3} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"e2e-test","id":"68824ba642be0f23307f38e6","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824ba642be0f23307f38e6","rel":"self"}],"privateKey":"********-****-****-20eba503f83a","publicKey":"iipllbbf","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"}]}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost index 0e998e2d1a..0038c51a07 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectAPIKeys/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_apiKeys_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 1503 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:40 GMT +Date: Thu, 24 Jul 2025 15:05:10 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 +X-Envoy-Upstream-Service-Time: 82 X-Frame-Options: DENY X-Java-Method: ApiProjectApiUsersResource::getApiUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}]},{"desc":"e2e-test","id":"687f1d8b44f1ab3f84231539","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/687f1d8b44f1ab3f84231539","rel":"self"}],"privateKey":"********-****-****-9e0a5a06f0bd","publicKey":"krgngpce","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"}]}],"totalCount":3} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/apiKeys?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"desc":"e2e-test","id":"68824ba642be0f23307f38e6","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/68824ba642be0f23307f38e6","rel":"self"}],"privateKey":"********-****-****-20eba503f83a","publicKey":"iipllbbf","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_DATA_ACCESS_READ_ONLY"}]},{"desc":"bianca-test","id":"65ccd430eb20d062681e521d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/65ccd430eb20d062681e521d","rel":"self"}],"privateKey":"********-****-****-7a7318486a98","publicKey":"jgblwcvi","roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_MEMBER"}]},{"desc":"e2e-test","id":"6564c343515f29099463b160","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/apiKeys/6564c343515f29099463b160","rel":"self"}],"privateKey":"********-****-****-de061174a097","publicKey":"ywcjnnxw","roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_READ_ONLY"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_READ_ONLY"}]}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost deleted file mode 100644 index 89f42251a2..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:47 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 70 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::deleteInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost new file mode 100644 index 0000000000..0914ee19c6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Delete/DELETE_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::deleteInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost deleted file mode 100644 index c1966d92d1..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 265 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:46 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 61 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::getInvitationByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:45Z","expiresAt":"2025-08-21T05:11:45Z","groupId":"687f1d8e44f1ab3f8423162b","groupName":"invitations-e2e-522","id":"687f1d9144f1ab3f84231712","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-993@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost new file mode 100644 index 0000000000..9efda89115 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Describe/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 265 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 62 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::getInvitationByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:14Z","expiresAt":"2025-08-23T15:05:14Z","groupId":"68824ba8b448981053345dc8","groupName":"invitations-e2e-220","id":"68824baab448981053345e8b","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-412@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost deleted file mode 100644 index 83f8ee0375..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 265 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 279 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::createInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:45Z","expiresAt":"2025-08-21T05:11:45Z","groupId":"687f1d8e44f1ab3f8423162b","groupName":"invitations-e2e-522","id":"687f1d9144f1ab3f84231712","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-993@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost new file mode 100644 index 0000000000..3855a36f4a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Invite/POST_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 265 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:14 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 254 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::createInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:14Z","expiresAt":"2025-08-23T15:05:14Z","groupId":"68824ba8b448981053345dc8","groupName":"invitations-e2e-220","id":"68824baab448981053345e8b","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-412@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost deleted file mode 100644 index f0a09484fa..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 267 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 68 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::getInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"createdAt":"2025-07-22T05:11:45Z","expiresAt":"2025-08-21T05:11:45Z","groupId":"687f1d8e44f1ab3f8423162b","groupName":"invitations-e2e-522","id":"687f1d9144f1ab3f84231712","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-993@mongodb.com"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost new file mode 100644 index 0000000000..7fd4aa0d91 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/List/GET_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 267 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 67 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::getInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"createdAt":"2025-07-24T15:05:14Z","expiresAt":"2025-08-23T15:05:14Z","groupId":"68824ba8b448981053345dc8","groupName":"invitations-e2e-220","id":"68824baab448981053345e8b","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY"],"username":"test-412@mongodb.com"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/POST_api_atlas_v2_groups_1.snaphost index 8db284af02..6f6d58d81d 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1073 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT +Date: Thu, 24 Jul 2025 15:05:12 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2340 +X-Envoy-Upstream-Service-Time: 2054 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:44Z","id":"687f1d8e44f1ab3f8423162b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"invitations-e2e-522","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:14Z","id":"68824ba8b448981053345dc8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"invitations-e2e-220","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost deleted file mode 100644 index 90ff79c82a..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_687f1d9144f1ab3f84231712_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 295 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:46 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 89 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::editInvitationsByInvitationId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:45Z","expiresAt":"2025-08-21T05:11:45Z","groupId":"687f1d8e44f1ab3f8423162b","groupName":"invitations-e2e-522","id":"687f1d9144f1ab3f84231712","inviterUsername":"nmtxqlkl","roles":["GROUP_DATA_ACCESS_READ_ONLY","GROUP_READ_ONLY"],"username":"test-993@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost new file mode 100644 index 0000000000..5411b23e2f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_ID/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_68824baab448981053345e8b_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 295 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 74 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::editInvitationsByInvitationId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:14Z","expiresAt":"2025-08-23T15:05:14Z","groupId":"68824ba8b448981053345dc8","groupName":"invitations-e2e-220","id":"68824baab448981053345e8b","inviterUsername":"nmtxqlkl","roles":["GROUP_READ_ONLY","GROUP_DATA_ACCESS_READ_ONLY"],"username":"test-412@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost deleted file mode 100644 index 416617e874..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_687f1d8e44f1ab3f8423162b_invites_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 295 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:46 GMT -Deprecation: Wed, 4 Oct 2023 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiGroupInvitationResource::editInvitations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:11:45Z","expiresAt":"2025-08-21T05:11:45Z","groupId":"687f1d8e44f1ab3f8423162b","groupName":"invitations-e2e-522","id":"687f1d9144f1ab3f84231712","inviterUsername":"nmtxqlkl","roles":["GROUP_DATA_ACCESS_READ_ONLY","GROUP_READ_ONLY"],"username":"test-993@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost new file mode 100644 index 0000000000..dec9342bd4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/Update_by_email/PATCH_api_atlas_v2_groups_68824ba8b448981053345dc8_invites_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 295 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Wed, 4 Oct 2023 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 86 +X-Frame-Options: DENY +X-Java-Method: ApiGroupInvitationResource::editInvitations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:05:14Z","expiresAt":"2025-08-23T15:05:14Z","groupId":"68824ba8b448981053345dc8","groupName":"invitations-e2e-220","id":"68824baab448981053345e8b","inviterUsername":"nmtxqlkl","roles":["GROUP_DATA_ACCESS_READ_ONLY","GROUP_READ_ONLY"],"username":"test-412@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/memory.json b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/memory.json index a454090880..40650d77e7 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectInvitations/memory.json @@ -1 +1 @@ -{"TestAtlasProjectInvitations/rand":"A+E="} \ No newline at end of file +{"TestAtlasProjectInvitations/rand":"AZw="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost deleted file mode 100644 index 76b2d67bb2..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 364 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 228 -X-Frame-Options: DENY -X-Java-Method: ApiGroupTeamsResource::addTeams -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams/687f1d9f44f1ab3f84231882","rel":"self"}],"roleNames":["GROUP_READ_ONLY"],"teamId":"687f1d9f44f1ab3f84231882"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost new file mode 100644 index 0000000000..22be1c1c4c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Add/POST_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 364 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 234 +X-Frame-Options: DENY +X-Java-Method: ApiGroupTeamsResource::addTeams +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams/68824bb6b448981053346106","rel":"self"}],"roleNames":["GROUP_READ_ONLY"],"teamId":"68824bb6b448981053346106"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1d9f44f1ab3f84231882_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1d9f44f1ab3f84231882_1.snaphost deleted file mode 100644 index c38bd38d49..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1d9f44f1ab3f84231882_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 154 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::deleteTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb6b448981053346106_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb6b448981053346106_1.snaphost new file mode 100644 index 0000000000..4100c03a65 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb6b448981053346106_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 127 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::deleteTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost deleted file mode 100644 index c612819abd..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 196 -X-Frame-Options: DENY -X-Java-Method: ApiGroupTeamsResource::removeTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost new file mode 100644 index 0000000000..5f4466efd1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Delete/DELETE_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 182 +X-Frame-Options: DENY +X-Java-Method: ApiGroupTeamsResource::removeTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost index 70aed8c26b..b251f78d9e 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 713 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT +Date: Thu, 24 Jul 2025 15:05:26 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 121 +X-Envoy-Upstream-Service-Time: 80 X-Frame-Options: DENY X-Java-Method: ApiOrganizationUsersResource::getOrganizationUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":14} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":18} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost deleted file mode 100644 index 038936a101..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 412 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 73 -X-Frame-Options: DENY -X-Java-Method: ApiGroupTeamsResource::getTeams -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams/687f1d9f44f1ab3f84231882","rel":"self"}],"roleNames":["GROUP_DATA_ACCESS_READ_ONLY","GROUP_READ_ONLY"],"teamId":"687f1d9f44f1ab3f84231882"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost new file mode 100644 index 0000000000..1c50c7c160 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/List/GET_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 412 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 81 +X-Frame-Options: DENY +X-Java-Method: ApiGroupTeamsResource::getTeams +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams/68824bb6b448981053346106","rel":"self"}],"roleNames":["GROUP_READ_ONLY","GROUP_DATA_ACCESS_READ_ONLY"],"teamId":"68824bb6b448981053346106"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_groups_1.snaphost index 2261664c56..748fa0258f 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1067 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:56 GMT +Date: Thu, 24 Jul 2025 15:05:23 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1786 +X-Envoy-Upstream-Service-Time: 2542 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:58Z","id":"687f1d9c44f1ab3f84231819","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"teams-e2e-824","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:26Z","id":"68824bb342be0f23307f3bc9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"teams-e2e-646","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost index f3705377ac..2d3c5b470e 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 232 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:59 GMT -Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/687f1d9f44f1ab3f84231882 +Date: Thu, 24 Jul 2025 15:05:26 GMT +Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/68824bb6b448981053346106 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 195 +X-Envoy-Upstream-Service-Time: 188 X-Frame-Options: DENY X-Java-Method: ApiOrganizationTeamsResource::createTeam X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"id":"687f1d9f44f1ab3f84231882","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1d9f44f1ab3f84231882","rel":"self"}],"name":"e2e-teams-632","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file +{"id":"68824bb6b448981053346106","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb6b448981053346106","rel":"self"}],"name":"e2e-teams-685","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost deleted file mode 100644 index e7ef3d7b84..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_687f1d9c44f1ab3f84231819_teams_687f1d9f44f1ab3f84231882_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 195 -X-Frame-Options: DENY -X-Java-Method: ApiGroupTeamsResource::patchTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams/687f1d9f44f1ab3f84231882?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9c44f1ab3f84231819/teams/687f1d9f44f1ab3f84231882","rel":"self"}],"roleNames":["GROUP_READ_ONLY","GROUP_DATA_ACCESS_READ_ONLY"],"teamId":"687f1d9f44f1ab3f84231882"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost new file mode 100644 index 0000000000..d381952390 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/Update/PATCH_api_atlas_v2_groups_68824bb342be0f23307f3bc9_teams_68824bb6b448981053346106_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 168 +X-Frame-Options: DENY +X-Java-Method: ApiGroupTeamsResource::patchTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams/68824bb6b448981053346106?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb342be0f23307f3bc9/teams/68824bb6b448981053346106","rel":"self"}],"roleNames":["GROUP_READ_ONLY","GROUP_DATA_ACCESS_READ_ONLY"],"teamId":"68824bb6b448981053346106"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/memory.json b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/memory.json index ee087b7048..0d34feba3e 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasProjectTeams/memory.json @@ -1 +1 @@ -{"TestAtlasProjectTeams/rand":"Ang="} \ No newline at end of file +{"TestAtlasProjectTeams/rand":"Aq0="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Create/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Create/POST_api_atlas_v2_groups_1.snaphost index 2c88ce296f..82de6b6cce 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Create/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Create/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1134 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:48 GMT +Date: Thu, 24 Jul 2025 15:05:16 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 3010 +X-Envoy-Upstream-Service-Time: 2783 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index 3f6fcebb54..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 374 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::deleteGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..394a5087cf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Delete/DELETE_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 393 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::deleteGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index 8d8fdda762..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1134 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::getGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..70bd4e9b75 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Describe/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1134 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::getGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/List/GET_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/List/GET_api_atlas_v2_groups_1.snaphost index 7be4f8989e..e707321cbd 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/List/GET_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/List/GET_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 200 OK Connection: close -Content-Length: 8756 +Content-Length: 8515 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT +Date: Thu, 24 Jul 2025 15:05:19 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 268 +X-Envoy-Upstream-Service-Time: 282 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::getAllGroups X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"clusterCount":7,"created":"2020-07-02T09:19:46Z","id":"b0123456789abcdef012345b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b","rel":"self"}],"name":"Atlas CLI E2E","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":false},{"clusterCount":1,"created":"2025-07-22T05:11:12Z","id":"687f1d6f44f1ab3f84230f31","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31","rel":"self"}],"name":"AutogeneratedCommands-e2e-558","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:29Z","id":"687f1d7fa799aa2ae9e804de","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7fa799aa2ae9e804de","rel":"self"}],"name":"accessLogs-e2e-969","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:47Z","id":"687f1d91a799aa2ae9e8077d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d","rel":"self"}],"name":"atlasStreams-e2e-42","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:34Z","id":"687f1d8444f1ab3f84231469","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469","rel":"self"}],"name":"atlasStreams-e2e-58","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e80858","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"self"}],"name":"backupRestores-e2e-62","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-05-28T11:19:57Z","id":"6836f15a05517854c0dda381","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/6836f15a05517854c0dda381","rel":"self"}],"name":"backupRestores2-691-e2f15312ca5c1309c2b","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-05-28T05:15:58Z","id":"68369c0d9806252ca7c427d1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68369c0d9806252ca7c427d1","rel":"self"}],"name":"backupRestores2-e2e-909","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:13Z","id":"687f1d7044f1ab3f84230f92","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92","rel":"self"}],"name":"backupSchedule-e2e-517","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:23Z","id":"687f1d79a799aa2ae9e803dd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd","rel":"self"}],"name":"clustersFile-e2e-649","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:40Z","id":"687f1d8aa799aa2ae9e8067f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f","rel":"self"}],"name":"clustersFlags-e2e-719","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:14Z","id":"687f1d6ea799aa2ae9e800fa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa","rel":"self"}],"name":"clustersIss-e2e-193","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:27Z","id":"687f1d7d44f1ab3f842312d4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4","rel":"self"}],"name":"clustersM0-e2e-863","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:12Z","id":"687f1d6ea799aa2ae9e8009f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f","rel":"self"}],"name":"clustersUpgrade-e2e-827","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:29Z","id":"687f1d7f44f1ab3f8423133e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e","rel":"self"}],"name":"copyprotection-compliance-policy-e2e-104","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:20Z","id":"687f1d7544f1ab3f842310d1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1","rel":"self"}],"name":"dataFederationPrivateEndpointsAWS-e2e-152","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:42Z","id":"687f1d8da799aa2ae9e806ec","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec","rel":"self"}],"name":"describe-compliance-policy-e2e-155","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"}],"name":"e2e-proj-312","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:49Z","id":"687f1d9444f1ab3f8423173d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d","rel":"self"}],"name":"enable-compliance-policy-e2e-852","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:44Z","id":"687f1d8e44f1ab3f8423162b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f8423162b","rel":"self"}],"name":"invitations-e2e-522","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:24Z","id":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb","rel":"self"}],"name":"ldap-e2e-965","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:45Z","id":"687f1d8e44f1ab3f84231649","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649","rel":"self"}],"name":"metrics-e2e-646","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:21Z","id":"687f1d78a799aa2ae9e80368","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368","rel":"self"}],"name":"onlineArchives-e2e-9","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:26Z","id":"687f1d7b44f1ab3f84231249","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249","rel":"self"}],"name":"performanceAdvisor-e2e-242","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:14Z","id":"687f1d7044f1ab3f84230fb6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6","rel":"self"}],"name":"processes-e2e-991","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:18Z","id":"687f1d7444f1ab3f84231064","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064","rel":"self"}],"name":"search-e2e-316","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:32Z","id":"687f1d80a799aa2ae9e8054b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b","rel":"self"}],"name":"serverless-e2e-706","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-22T05:11:29Z","id":"687f1d7f44f1ab3f8423133f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f","rel":"self"}],"name":"setup-e2e-361","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-22T05:11:34Z","id":"687f1d84a799aa2ae9e805b9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9","rel":"self"}],"name":"setup-e2e-857","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true}],"totalCount":30} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"clusterCount":5,"created":"2020-07-02T09:19:46Z","id":"b0123456789abcdef012345b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b","rel":"self"}],"name":"Atlas CLI E2E","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:59Z","id":"68824b9a42be0f23307f3610","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610","rel":"self"}],"name":"AutogeneratedCommands-e2e-318","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T05:11:58Z","id":"6881c09b78d9415ffc817d53","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/6881c09b78d9415ffc817d53","rel":"self"}],"name":"AutogeneratedCommands-e2e-824","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T05:13:06Z","id":"6881c0e078d9415ffc8185b9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/6881c0e078d9415ffc8185b9","rel":"self"}],"name":"accessLogs-e2e-469","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:05:11Z","id":"68824ba542be0f23307f3874","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba542be0f23307f3874","rel":"self"}],"name":"accessLogs-e2e-651","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:59Z","id":"68824b9842be0f23307f35ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad","rel":"self"}],"name":"atlasStreams-e2e-397","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:17Z","id":"68824babb448981053345e9a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a","rel":"self"}],"name":"atlasStreams-e2e-784","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T05:12:28Z","id":"6881c0b9b7b97c2537f63adc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/6881c0b9b7b97c2537f63adc","rel":"self"}],"name":"atlasStreams-e2e-976","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-05-28T11:19:57Z","id":"6836f15a05517854c0dda381","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/6836f15a05517854c0dda381","rel":"self"}],"name":"backupRestores2-691-e2f15312ca5c1309c2b","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-05-28T05:15:58Z","id":"68369c0d9806252ca7c427d1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68369c0d9806252ca7c427d1","rel":"self"}],"name":"backupRestores2-e2e-909","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:43Z","id":"68824b89b44898105334593e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e","rel":"self"}],"name":"backupSchedule-e2e-487","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:39Z","id":"68824b8642be0f23307f33bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd","rel":"self"}],"name":"clustersFlags-e2e-173","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:03Z","id":"68824b9c42be0f23307f3673","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673","rel":"self"}],"name":"clustersIss-e2e-950","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:16Z","id":"68824ba8b448981053345e17","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17","rel":"self"}],"name":"compliance-policy-pointintimerestore-e2e-530","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:04:50Z","id":"68824b9042be0f23307f352b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b","rel":"self"}],"name":"copyprotection-compliance-policy-e2e-527","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:03Z","id":"68824b9cb448981053345bce","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce","rel":"self"}],"name":"dataFederationPrivateEndpointsAWS-e2e-786","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:02Z","id":"68824b9db448981053345c72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72","rel":"self"}],"name":"describe-compliance-policy-e2e-157","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"}],"name":"e2e-proj-155","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:11Z","id":"68824ba4b448981053345d41","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41","rel":"self"}],"name":"enable-compliance-policy-e2e-616","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:14Z","id":"68824ba8b448981053345dc8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345dc8","rel":"self"}],"name":"invitations-e2e-220","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:49Z","id":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2","rel":"self"}],"name":"ldap-e2e-942","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:05:02Z","id":"68824b9cb448981053345c3f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f","rel":"self"}],"name":"performanceAdvisor-e2e-113","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:04:46Z","id":"68824b8db448981053345ab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6","rel":"self"}],"name":"privateEndpointsAWS-e2e-531","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:46Z","id":"68824b8c42be0f23307f3451","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451","rel":"self"}],"name":"processes-e2e-897","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:05:15Z","id":"68824ba942be0f23307f398e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e","rel":"self"}],"name":"searchNodes-e2e-991","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:04:48Z","id":"68824b8fb448981053345b19","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19","rel":"self"}],"name":"setup-e2e-510","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":0,"created":"2025-07-24T15:04:44Z","id":"68824b8bb448981053345a2e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e","rel":"self"}],"name":"setup-e2e-511","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true},{"clusterCount":1,"created":"2025-07-24T15:05:10Z","id":"68824ba442be0f23307f380f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f","rel":"self"}],"name":"shardedClusters-e2e-787","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true}],"totalCount":31} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index 038a24bea8..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1134 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::getGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..70bd4e9b75 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Tags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1134 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::getGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"prod","value":"false"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index f3ce59e750..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1084 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 93 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::getGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312-updated","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..2559e48981 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1084 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::getGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155-updated","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index 1b6243fc38..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1084 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 228 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::patchGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312-updated","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..d6247a6e8b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_resetTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1084 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 514 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::patchGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155-updated","orgId":"a0123456789abcdef012345a","tags":[],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index 7884a8c778..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1139 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::getGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312-updated","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"app","value":"cli"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..866689f72e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1139 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 92 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::getGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155-updated","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"app","value":"cli"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost deleted file mode 100644 index a950629d12..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1139 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 408 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::patchGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e807fc","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-312-updated","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"app","value":"cli"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost new file mode 100644 index 0000000000..a38e76eda3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Update_setNameAndTags/PATCH_api_atlas_v2_groups_68824bac42be0f23307f39ff_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1139 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 393 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::patchGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterCount":0,"created":"2025-07-24T15:05:18Z","id":"68824bac42be0f23307f39ff","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"e2e-proj-155-updated","orgId":"a0123456789abcdef012345a","tags":[{"key":"env","value":"e2e"},{"key":"app","value":"cli"}],"withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_users_1.snaphost deleted file mode 100644 index c3e15ea7c1..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e807fc_users_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 488 -Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiGroupUsersResource::getGroupUsers -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e807fc/users?flattenTeams=false&includeCount=true&includeOrgUsers=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-01-10T11:55:55Z","firstName":"Colm","id":"5e18664b7a3e5a55893d374a","lastAuth":"2025-05-28T14:20:21Z","lastName":"Quinn","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"colm.quinn@mongodb.com"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_users_1.snaphost new file mode 100644 index 0000000000..06aab50541 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/Users/GET_api_atlas_v2_groups_68824bac42be0f23307f39ff_users_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 488 +Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 86 +X-Frame-Options: DENY +X-Java-Method: ApiGroupUsersResource::getGroupUsers +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bac42be0f23307f39ff/users?flattenTeams=false&includeCount=true&includeOrgUsers=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-01-10T11:55:55Z","firstName":"Colm","id":"5e18664b7a3e5a55893d374a","lastAuth":"2025-05-28T14:20:21Z","lastName":"Quinn","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"colm.quinn@mongodb.com"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasProjects/memory.json b/test/e2e/testdata/.snapshots/TestAtlasProjects/memory.json index 6e04c13e4c..324c33bafa 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasProjects/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasProjects/memory.json @@ -1 +1 @@ -{"TestAtlasProjects/rand":"ATg="} \ No newline at end of file +{"TestAtlasProjects/rand":"mw=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost deleted file mode 100644 index a03eef0b61..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1244 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:07 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 250 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::addTeamUsers -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da644f1ab3f8423192b/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2022-01-10T16:04:57Z","emailAddress":"bianca.vianadeaguiar@mongodb.com","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","links":[{"href":"http://localhost:8080/api/atlas/v2/users/61dc5929ae95796dcd418d1d","rel":"self"}],"roles":[{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"},{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"}],"teamIds":["687f1da644f1ab3f8423192b"],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2020-02-18T10:58:47Z","emailAddress":"andrea.angiolillo@mongodb.com","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","links":[{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178","rel":"self"}],"roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}],"teamIds":["687f1da644f1ab3f8423192b"],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost new file mode 100644 index 0000000000..d35734d525 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Add/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1244 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:32 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 239 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::addTeamUsers +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bbcb44898105334613c/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2022-01-10T16:04:57Z","emailAddress":"bianca.vianadeaguiar@mongodb.com","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","links":[{"href":"http://localhost:8080/api/atlas/v2/users/61dc5929ae95796dcd418d1d","rel":"self"}],"roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}],"teamIds":["68824bbcb44898105334613c"],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2020-02-18T10:58:47Z","emailAddress":"andrea.angiolillo@mongodb.com","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","links":[{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178","rel":"self"}],"roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}],"teamIds":["68824bbcb44898105334613c"],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_1.snaphost deleted file mode 100644 index 6f1de09f1b..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 129 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::deleteTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_1.snaphost new file mode 100644 index 0000000000..db869b8557 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 130 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::deleteTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_61dc5929ae95796dcd418d1d_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_61dc5929ae95796dcd418d1d_1.snaphost deleted file mode 100644 index 9ec6ba83b2..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_61dc5929ae95796dcd418d1d_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:09 GMT -Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Fri, 31 Jul 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 188 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::removeTeamUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_61dc5929ae95796dcd418d1d_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_61dc5929ae95796dcd418d1d_1.snaphost new file mode 100644 index 0000000000..551a0ff7fa --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_61dc5929ae95796dcd418d1d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:33 GMT +Deprecation: Wed, 19 Feb 2025 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Fri, 31 Jul 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 213 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::removeTeamUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost index 0a5251f299..f91d23c3ab 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 713 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:06 GMT +Date: Thu, 24 Jul 2025 15:05:31 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 84 +X-Envoy-Upstream-Service-Time: 109 X-Frame-Options: DENY X-Java-Method: ApiOrganizationUsersResource::getOrganizationUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":14} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":18} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_2.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_2.snaphost index d9e21c1c7e..7d9762c8db 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_2.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 1135 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:07 GMT +Date: Thu, 24 Jul 2025 15:05:32 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 +X-Envoy-Upstream-Service-Time: 112 X-Frame-Options: DENY X-Java-Method: ApiOrganizationUsersResource::getOrganizationUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=2&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["687f1da644f1ab3f8423192b"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":14} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=2&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["68824bbcb44898105334613c"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":18} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost deleted file mode 100644 index 4ab4b70352..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1037 -Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 136 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamUsersResource::getTeamUsers -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da644f1ab3f8423192b/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["687f1da644f1ab3f8423192b"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["687f1da644f1ab3f8423192b"],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost new file mode 100644 index 0000000000..b6fb450753 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1037 +Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 132 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamUsersResource::getTeamUsers +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bbcb44898105334613c/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["68824bbcb44898105334613c"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["68824bbcb44898105334613c"],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost deleted file mode 100644 index 118f32884c..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da644f1ab3f8423192b_users_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1037 -Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamUsersResource::getTeamUsers -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da644f1ab3f8423192b/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["687f1da644f1ab3f8423192b"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["687f1da644f1ab3f8423192b"],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost new file mode 100644 index 0000000000..90789d49b8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bbcb44898105334613c_users_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1037 +Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamUsersResource::getTeamUsers +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bbcb44898105334613c/users?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["68824bbcb44898105334613c"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":["68824bbcb44898105334613c"],"username":"bianca.vianadeaguiar@mongodb.com"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost index 125811aeb8..9be050749b 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 227 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:06 GMT -Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/687f1da644f1ab3f8423192b +Date: Thu, 24 Jul 2025 15:05:32 GMT +Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/68824bbcb44898105334613c Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 203 +X-Envoy-Upstream-Service-Time: 156 X-Frame-Options: DENY X-Java-Method: ApiOrganizationTeamsResource::createTeam X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"id":"687f1da644f1ab3f8423192b","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da644f1ab3f8423192b","rel":"self"}],"name":"teams299","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file +{"id":"68824bbcb44898105334613c","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bbcb44898105334613c","rel":"self"}],"name":"teams893","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/memory.json b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/memory.json index 3fe94b5377..e03844c0b4 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasTeamUsers/memory.json @@ -1 +1 @@ -{"TestAtlasTeamUsers/rand":"ASs="} \ No newline at end of file +{"TestAtlasTeamUsers/rand":"A30="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost index 98b9ba4874..69343eade1 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_users_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 713 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT +Date: Thu, 24 Jul 2025 15:05:29 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 82 +X-Envoy-Upstream-Service-Time: 119 X-Frame-Options: DENY X-Java-Method: ApiOrganizationUsersResource::getOrganizationUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":14} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&pageNum=1&itemsPerPage=1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/users?includeCount=true&itemsPerPage=1&pageNum=2","rel":"next"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":{"groupRoleAssignments":[{"groupId":"b0123456789abcdef012345b","groupRoles":["GROUP_OWNER"]}],"orgRoles":["ORG_OWNER"]},"teamIds":[],"username":"andrea.angiolillo@mongodb.com"}],"totalCount":18} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost index 2d45615a33..dd87cd5781 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 227 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT -Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75 +Date: Thu, 24 Jul 2025 15:05:29 GMT +Location: http://localhost:8080/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 177 +X-Envoy-Upstream-Service-Time: 191 X-Frame-Options: DENY X-Java-Method: ApiOrganizationTeamsResource::createTeam X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file +{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873","usernames":["andrea.angiolillo@mongodb.com"]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost deleted file mode 100644 index 875a207132..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:05 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::deleteTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost new file mode 100644 index 0000000000..be98ae30c7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:31 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 131 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::deleteTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost deleted file mode 100644 index e4901738d6..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 181 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 51 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::getTeamById -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost new file mode 100644 index 0000000000..b98441312c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_ID/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 181 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:29 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 63 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::getTeamById +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams760_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams760_1.snaphost deleted file mode 100644 index ca92c4fb22..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams760_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 181 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 54 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::getTeamByName -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams873_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams873_1.snaphost new file mode 100644 index 0000000000..b1836330f5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Describe_By_Name/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_byName_teams873_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 181 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 65 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::getTeamByName +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost index 2f66656951..66e8420714 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/List/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 368 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:04 GMT +Date: Thu, 24 Jul 2025 15:05:30 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 53 +X-Envoy-Upstream-Service-Time: 57 X-Frame-Options: DENY X-Java-Method: ApiOrganizationTeamsResource::getTeams X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760_renamed"}],"totalCount":1} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873_renamed"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost index acd057252b..657a846123 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/List_Compact/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_1.snaphost @@ -1,7 +1,7 @@ HTTP/2.0 200 OK Content-Length: 368 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:05 GMT +Date: Thu, 24 Jul 2025 15:05:30 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; @@ -10,7 +10,7 @@ X-Envoy-Upstream-Service-Time: 60 X-Frame-Options: DENY X-Java-Method: ApiOrganizationTeamsResource::getTeams X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760_renamed"}],"totalCount":1} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873_renamed"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost deleted file mode 100644 index 485337c3a2..0000000000 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_687f1da3a799aa2ae9e80a75_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 189 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 166 -X-Frame-Options: DENY -X-Java-Method: ApiOrganizationTeamsResource::patchTeam -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"id":"687f1da3a799aa2ae9e80a75","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/687f1da3a799aa2ae9e80a75","rel":"self"}],"name":"teams760_renamed"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost new file mode 100644 index 0000000000..9fe3157eb5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/Rename/PATCH_api_atlas_v2_orgs_a0123456789abcdef012345a_teams_68824bb942be0f23307f3c7d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 189 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 176 +X-Frame-Options: DENY +X-Java-Method: ApiOrganizationTeamsResource::patchTeam +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"id":"68824bb942be0f23307f3c7d","links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/teams/68824bb942be0f23307f3c7d","rel":"self"}],"name":"teams873_renamed"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasTeams/memory.json b/test/e2e/testdata/.snapshots/TestAtlasTeams/memory.json index 3b6fff8e60..589c17963c 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasTeams/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasTeams/memory.json @@ -1 +1 @@ -{"TestAtlasTeams/rand":"Avg="} \ No newline at end of file +{"TestAtlasTeams/rand":"A2k="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_ID/GET_api_atlas_v2_users_5e4bc367c6b0f41bb9bbb178_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_ID/GET_api_atlas_v2_users_5e4bc367c6b0f41bb9bbb178_1.snaphost index 8063f6727f..bb831695ae 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_ID/GET_api_atlas_v2_users_5e4bc367c6b0f41bb9bbb178_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_ID/GET_api_atlas_v2_users_5e4bc367c6b0f41bb9bbb178_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 200 OK Content-Length: 763 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:11 GMT +Date: Thu, 24 Jul 2025 15:05:35 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 358 +X-Envoy-Upstream-Service-Time: 397 X-Frame-Options: DENY X-Java-Method: ApiUsersResource::getUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"country":"IE","createdAt":"2020-02-18T10:58:47Z","emailAddress":"andrea.angiolillo@mongodb.com","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","links":[{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178/whitelist","rel":"https://cloud.mongodb.com/whitelist"},{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178/accessList","rel":"https://cloud.mongodb.com/accessList"}],"roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}],"teamIds":[],"username":"andrea.angiolillo@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_username/GET_api_atlas_v2_users_byName_andrea.angiolillo@mongodb.com_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_username/GET_api_atlas_v2_users_byName_andrea.angiolillo@mongodb.com_1.snaphost index e96f0fba13..95e3aa176f 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_username/GET_api_atlas_v2_users_byName_andrea.angiolillo@mongodb.com_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasUsers/Describe_by_username/GET_api_atlas_v2_users_byName_andrea.angiolillo@mongodb.com_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 200 OK Content-Length: 763 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:10 GMT +Date: Thu, 24 Jul 2025 15:05:35 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 145 +X-Envoy-Upstream-Service-Time: 117 X-Frame-Options: DENY X-Java-Method: ApiUsersResource::getUserByName X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"country":"IE","createdAt":"2020-02-18T10:58:47Z","emailAddress":"andrea.angiolillo@mongodb.com","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","links":[{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178/whitelist","rel":"https://cloud.mongodb.com/whitelist"},{"href":"http://localhost:8080/api/atlas/v2/users/5e4bc367c6b0f41bb9bbb178/accessList","rel":"https://cloud.mongodb.com/accessList"}],"roles":[{"groupId":"b0123456789abcdef012345b","roleName":"GROUP_OWNER"},{"orgId":"a0123456789abcdef012345a","roleName":"ORG_OWNER"}],"teamIds":[],"username":"andrea.angiolillo@mongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasUsers/Invite/POST_api_atlas_v2_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasUsers/Invite/POST_api_atlas_v2_users_1.snaphost index f55c3751b6..bcaf5fff6e 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasUsers/Invite/POST_api_atlas_v2_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasUsers/Invite/POST_api_atlas_v2_users_1.snaphost @@ -1,19 +1,19 @@ HTTP/2.0 201 Created Content-Length: 609 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:12 GMT +Date: Thu, 24 Jul 2025 15:05:36 GMT Deprecation: Wed, 19 Feb 2025 00:00:00 GMT -Location: http://localhost:8080/api/atlas/v1.0/users/687f1dad44f1ab3f842319c3 +Location: http://localhost:8080/api/atlas/v1.0/users/68824bc142be0f23307f3d26 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Fri, 31 Jul 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1789 +X-Envoy-Upstream-Service-Time: 1221 X-Frame-Options: DENY X-Java-Method: ApiUsersResource::addUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"country":"US","createdAt":"2025-07-22T05:12:13Z","emailAddress":"cli-test-9671@moongodb.com","firstName":"TestFirstName","id":"687f1dad44f1ab3f842319c3","lastName":"TestLastName","links":[{"href":"http://localhost:8080/api/atlas/v2/users/687f1dad44f1ab3f842319c3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/users/687f1dad44f1ab3f842319c3/whitelist","rel":"https://cloud.mongodb.com/whitelist"},{"href":"http://localhost:8080/api/atlas/v2/users/687f1dad44f1ab3f842319c3/accessList","rel":"https://cloud.mongodb.com/accessList"}],"roles":[],"teamIds":[],"username":"cli-test-9671@moongodb.com"} \ No newline at end of file +{"country":"US","createdAt":"2025-07-24T15:05:37Z","emailAddress":"cli-test-9993@moongodb.com","firstName":"TestFirstName","id":"68824bc142be0f23307f3d26","lastName":"TestLastName","links":[{"href":"http://localhost:8080/api/atlas/v2/users/68824bc142be0f23307f3d26","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/users/68824bc142be0f23307f3d26/whitelist","rel":"https://cloud.mongodb.com/whitelist"},{"href":"http://localhost:8080/api/atlas/v2/users/68824bc142be0f23307f3d26/accessList","rel":"https://cloud.mongodb.com/accessList"}],"roles":[],"teamIds":[],"username":"cli-test-9993@moongodb.com"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasUsers/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_users_1.snaphost b/test/e2e/testdata/.snapshots/TestAtlasUsers/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_users_1.snaphost index 3e19fb37f5..65311e17e5 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasUsers/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_users_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAtlasUsers/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_users_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 2178 Content-Type: application/vnd.atlas.2025-02-19+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:10 GMT +Date: Thu, 24 Jul 2025 15:05:34 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 +X-Envoy-Upstream-Service-Time: 112 X-Frame-Options: DENY X-Java-Method: ApiGroupUsersResource::getGroupUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/users?flattenTeams=false&includeCount=true&includeOrgUsers=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2021-05-06T18:17:36Z","firstName":"Ciprian","id":"609432c05841544134fb92c0","lastAuth":"2025-04-02T08:30:04Z","lastName":"Tibulca","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"ciprian.tibulca@mongodb.com"},{"country":"US","createdAt":"2023-06-06T15:09:44Z","firstName":"Drew","id":"647f4c38fe95ad3167e98a78","lastAuth":"2025-07-22T00:27:44Z","lastName":"Beckmen","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"drew.beckmen@mongodb.com"},{"country":"IE","createdAt":"2021-03-18T11:49:12Z","firstName":"Filipe","id":"60533e389b6f8f2d146a13f1","lastAuth":"2025-07-21T09:25:56Z","lastName":"Constantinov Menezes","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"filipe.menezes@mongodb.com"},{"country":"IE","createdAt":"2020-02-04T16:41:45Z","firstName":"Gustavo","id":"5e399ec9f10fab1f92b44834","lastAuth":"2025-05-29T11:44:48Z","lastName":"Bazan","mobileNumber":"+353872529768","orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"gustavo.bazan@mongodb.com"},{"country":"IE","createdAt":"2024-01-15T10:32:13Z","firstName":"Jeroen","id":"65a509ade774f41fad2d913c","lastAuth":"2025-04-25T10:30:17Z","lastName":"Vervaeke","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"jeroen.vervaeke@mongodb.com"}],"totalCount":7} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/users?flattenTeams=false&includeCount=true&includeOrgUsers=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"country":"IE","createdAt":"2020-02-18T10:58:47Z","firstName":"Andrea","id":"5e4bc367c6b0f41bb9bbb178","lastAuth":"2025-07-15T08:35:38Z","lastName":"Angiolillo","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"andrea.angiolillo@mongodb.com"},{"country":"IE","createdAt":"2022-01-10T16:04:57Z","firstName":"Bianca","id":"61dc5929ae95796dcd418d1d","lastAuth":"2025-07-03T08:06:37Z","lastName":"Lisle","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"bianca.vianadeaguiar@mongodb.com"},{"country":"IE","createdAt":"2021-05-06T18:17:36Z","firstName":"Ciprian","id":"609432c05841544134fb92c0","lastAuth":"2025-04-02T08:30:04Z","lastName":"Tibulca","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"ciprian.tibulca@mongodb.com"},{"country":"US","createdAt":"2023-06-06T15:09:44Z","firstName":"Drew","id":"647f4c38fe95ad3167e98a78","lastAuth":"2025-07-23T14:14:45Z","lastName":"Beckmen","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"drew.beckmen@mongodb.com"},{"country":"IE","createdAt":"2021-03-18T11:49:12Z","firstName":"Filipe","id":"60533e389b6f8f2d146a13f1","lastAuth":"2025-07-21T09:25:56Z","lastName":"Constantinov Menezes","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"filipe.menezes@mongodb.com"},{"country":"IE","createdAt":"2020-02-04T16:41:45Z","firstName":"Gustavo","id":"5e399ec9f10fab1f92b44834","lastAuth":"2025-05-29T11:44:48Z","lastName":"Bazan","mobileNumber":"+353872529768","orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"gustavo.bazan@mongodb.com"},{"country":"IE","createdAt":"2024-01-15T10:32:13Z","firstName":"Jeroen","id":"65a509ade774f41fad2d913c","lastAuth":"2025-07-24T09:54:25Z","lastName":"Vervaeke","mobileNumber":null,"orgMembershipStatus":"ACTIVE","roles":["GROUP_OWNER"],"username":"jeroen.vervaeke@mongodb.com"}],"totalCount":7} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAtlasUsers/memory.json b/test/e2e/testdata/.snapshots/TestAtlasUsers/memory.json index b735afaa5b..40211e3b41 100644 --- a/test/e2e/testdata/.snapshots/TestAtlasUsers/memory.json +++ b/test/e2e/testdata/.snapshots/TestAtlasUsers/memory.json @@ -1 +1 @@ -{"TestAtlasUsers/Invite/rand":"Jcc="} \ No newline at end of file +{"TestAtlasUsers/Invite/rand":"Jwk="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost deleted file mode 100644 index 7e30fb576e..0000000000 --- a/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 78 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 93 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAuditLogResource::getAuditLog -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"auditAuthorizationSuccess":false,"configurationType":"NONE","enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost new file mode 100644 index 0000000000..9e06d93e9f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAuditing/Describe/GET_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 78 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAuditLogResource::getAuditLog +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"auditAuthorizationSuccess":false,"configurationType":"NONE","enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/POST_api_atlas_v2_groups_1.snaphost index 61f934a256..cf36324d2a 100644 --- a/test/e2e/testdata/.snapshots/TestAuditing/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAuditing/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1068 +Content-Length: 1070 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:05 GMT +Date: Thu, 24 Jul 2025 15:06:16 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1446 +X-Envoy-Upstream-Service-Time: 2769 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:13:06Z","id":"687f1de1a799aa2ae9e80cd7","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de1a799aa2ae9e80cd7/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"auditing-e2e-0","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:18Z","id":"68824be8b44898105334652d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824be8b44898105334652d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"auditing-e2e-689","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost deleted file mode 100644 index f77bb901df..0000000000 --- a/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 129 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAuditLogResource::patchAuditLog -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"auditAuthorizationSuccess":true,"auditFilter":"{\"atype\": \"authenticate\"}","configurationType":"FILTER_JSON","enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost new file mode 100644 index 0000000000..cc8cbf8f8e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAuditing/Update/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 129 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 127 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAuditLogResource::patchAuditLog +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"auditAuthorizationSuccess":true,"auditFilter":"{\"atype\": \"authenticate\"}","configurationType":"FILTER_JSON","enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost deleted file mode 100644 index 66c7dd78c3..0000000000 --- a/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_687f1de1a799aa2ae9e80cd7_auditLog_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 241 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:07 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAuditLogResource::patchAuditLog -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"auditAuthorizationSuccess":true,"auditFilter":"{\n \"atype\": \"authCheck\",\n \"param.command\": {\n \"$in\": [\n \"insert\",\n \"update\",\n \"delete\"\n ]\n }\n}","configurationType":"FILTER_JSON","enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost b/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost new file mode 100644 index 0000000000..cb5fdc5792 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAuditing/Update_via_file/PATCH_api_atlas_v2_groups_68824be8b44898105334652d_auditLog_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 241 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAuditLogResource::patchAuditLog +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"auditAuthorizationSuccess":true,"auditFilter":"{\n \"atype\": \"authCheck\",\n \"param.command\": {\n \"$in\": [\n \"insert\",\n \"update\",\n \"delete\"\n ]\n }\n}","configurationType":"FILTER_JSON","enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_1.snaphost deleted file mode 100644 index c9df979308..0000000000 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1854 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6f44f1ab3f84230f31","id":"687f1d72a799aa2ae9e80187","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-2","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80161","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80176","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_2.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_2.snaphost deleted file mode 100644 index f9fbf00ea1..0000000000 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1940 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6f44f1ab3f84230f31","id":"687f1d72a799aa2ae9e80187","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-2","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80177","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80176","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_3.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_3.snaphost deleted file mode 100644 index f7e78860b6..0000000000 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_AutogeneratedCommands-2_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2289 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://autogeneratedcommands-2-shard-00-00.f07tvn.mongodb-dev.net:27017,autogeneratedcommands-2-shard-00-01.f07tvn.mongodb-dev.net:27017,autogeneratedcommands-2-shard-00-02.f07tvn.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-2ujnor-shard-0","standardSrv":"mongodb+srv://autogeneratedcommands-2.f07tvn.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6f44f1ab3f84230f31","id":"687f1d72a799aa2ae9e80187","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-2","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80177","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80176","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_provider_regions_1.snaphost deleted file mode 100644 index d6fb65ed42..0000000000 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:12 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 176 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_1.snaphost new file mode 100644 index 0000000000..37c5291060 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1854 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:01 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9a42be0f23307f3610","id":"68824b9cb448981053345bee","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-6","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9cb448981053345bbf","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bca","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_2.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_2.snaphost new file mode 100644 index 0000000000..135a5bc688 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1940 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 124 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9a42be0f23307f3610","id":"68824b9cb448981053345bee","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-6","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9cb448981053345bcb","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bca","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_3.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_3.snaphost new file mode 100644 index 0000000000..4c68f9d916 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_AutogeneratedCommands-6_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2289 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://autogeneratedcommands-6-shard-00-00.ydj8lx.mongodb-dev.net:27017,autogeneratedcommands-6-shard-00-01.ydj8lx.mongodb-dev.net:27017,autogeneratedcommands-6-shard-00-02.ydj8lx.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-wr4u69-shard-0","standardSrv":"mongodb+srv://autogeneratedcommands-6.ydj8lx.mongodb-dev.net"},"createDate":"2025-07-24T15:05:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9a42be0f23307f3610","id":"68824b9cb448981053345bee","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-6","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9cb448981053345bcb","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bca","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..c1d15eb5b6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/GET_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_1.snaphost index 4719082d5b..3bc32348da 100644 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1083 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:10 GMT +Date: Thu, 24 Jul 2025 15:04:58 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1751 +X-Envoy-Upstream-Service-Time: 1281 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:12Z","id":"687f1d6f44f1ab3f84230f31","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"AutogeneratedCommands-e2e-558","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:59Z","id":"68824b9a42be0f23307f3610","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"AutogeneratedCommands-e2e-318","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_1.snaphost deleted file mode 100644 index 180c4fd307..0000000000 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_687f1d6f44f1ab3f84230f31_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1844 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:13 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 951 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6f44f1ab3f84230f31","id":"687f1d72a799aa2ae9e80187","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6f44f1ab3f84230f31/clusters/AutogeneratedCommands-2/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-2","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80161","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80176","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_1.snaphost new file mode 100644 index 0000000000..14a0211197 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/POST_api_atlas_v2_groups_68824b9a42be0f23307f3610_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1844 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 637 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9a42be0f23307f3610","id":"68824b9cb448981053345bee","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9a42be0f23307f3610/clusters/AutogeneratedCommands-6/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"AutogeneratedCommands-6","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9cb448981053345bbf","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bca","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/memory.json b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/memory.json index 419fe670ec..eb9f868e63 100644 --- a/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/memory.json +++ b/test/e2e/testdata/.snapshots/TestAutogeneratedCommands/memory.json @@ -1 +1 @@ -{"TestAutogeneratedCommands/AutogeneratedCommandsGenerateClusterName":"AutogeneratedCommands-2"} \ No newline at end of file +{"TestAutogeneratedCommands/AutogeneratedCommandsGenerateClusterName":"AutogeneratedCommands-6"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index cda7b0e619..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 75 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:11:30Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost deleted file mode 100644 index ca8761c5d7..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 417 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:30Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..00011b26f7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:04:50Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost new file mode 100644 index 0000000000..de613e5e44 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 417 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:04:50Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/POST_api_atlas_v2_groups_1.snaphost index 66ad36ff11..1f95fa5c0c 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1094 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT +Date: Thu, 24 Jul 2025 15:04:48 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2223 +X-Envoy-Upstream-Service-Time: 2468 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:29Z","id":"687f1d7f44f1ab3f8423133e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133e/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"copyprotection-compliance-policy-e2e-104","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:50Z","id":"68824b9042be0f23307f352b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9042be0f23307f352b/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"copyprotection-compliance-policy-e2e-527","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index f6558e690f..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 194 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:11:30Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..908784d8a5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 199 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:04:50Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 6b41c27218..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 416 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:35Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..f3d4375485 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 416 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:04:55Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 75c4926b66..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:40 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 206 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-22T05:11:40Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..b292f2b4bf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/disable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-24T15:05:00Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 64855084b7..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 417 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 89 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:30Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost deleted file mode 100644 index 6ff1fb9f1e..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 418 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-22T05:11:35Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_3.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_3.snaphost deleted file mode 100644 index 05cd31976e..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 416 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:35Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..2e9d26db8d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 417 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:04:50Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost new file mode 100644 index 0000000000..293461fa50 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 418 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 74 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-24T15:04:55Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_3.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_3.snaphost new file mode 100644 index 0000000000..bbf4e91690 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/GET_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 416 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 86 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:04:55Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost deleted file mode 100644 index d565c806f9..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_687f1d7f44f1ab3f8423133e_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 418 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 218 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d7f44f1ab3f8423133e","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-22T05:11:35Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..b1d0c4c714 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyCopyProtection/enable/PUT_api_atlas_v2_groups_68824b9042be0f23307f352b_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 418 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 158 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":true,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9042be0f23307f352b","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"UPDATING","updatedDate":"2025-07-24T15:04:55Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost deleted file mode 100644 index e9ef3c7436..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 68 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d8da799aa2ae9e806ec","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:11:42Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_2.snaphost deleted file mode 100644 index 5c086593d8..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 417 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d8da799aa2ae9e806ec","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:42Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..3a3489b709 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 61 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9db448981053345c72","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:05:03Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_2.snaphost new file mode 100644 index 0000000000..caeb5f8ac0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/GET_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 417 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:07 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9db448981053345c72","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:05:03Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/POST_api_atlas_v2_groups_1.snaphost index fe5ea50a9c..8ea5585e14 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1088 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:41 GMT +Date: Thu, 24 Jul 2025 15:05:01 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1299 +X-Envoy-Upstream-Service-Time: 1689 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:42Z","id":"687f1d8da799aa2ae9e806ec","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8da799aa2ae9e806ec/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"describe-compliance-policy-e2e-155","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:02Z","id":"68824b9db448981053345c72","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9db448981053345c72/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"describe-compliance-policy-e2e-157","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost deleted file mode 100644 index d480af96e9..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_687f1d8da799aa2ae9e806ec_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 147 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d8da799aa2ae9e806ec","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:11:42Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..e81fafdcfe --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyDescribe/PUT_api_atlas_v2_groups_68824b9db448981053345c72_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 190 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824b9db448981053345c72","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:05:03Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/POST_api_atlas_v2_groups_1.snaphost index 6a13c76e37..007af14a5f 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1086 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:48 GMT +Date: Thu, 24 Jul 2025 15:05:08 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1307 +X-Envoy-Upstream-Service-Time: 3414 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:49Z","id":"687f1d9444f1ab3f8423173d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9444f1ab3f8423173d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"enable-compliance-policy-e2e-852","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:11Z","id":"68824ba4b448981053345d41","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba4b448981053345d41/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"enable-compliance-policy-e2e-616","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_687f1d9444f1ab3f8423173d_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_687f1d9444f1ab3f8423173d_backupCompliancePolicy_1.snaphost deleted file mode 100644 index d02b37e5aa..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_687f1d9444f1ab3f8423173d_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 171 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d9444f1ab3f8423173d","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:11:50Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_68824ba4b448981053345d41_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_68824ba4b448981053345d41_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..3b2b50a19d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyEnable/PUT_api_atlas_v2_groups_68824ba4b448981053345d41_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 159 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824ba4b448981053345d41","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:05:12Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 4dee3fa955..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 541 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d97a799aa2ae9e808d1","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"687f1d9944f1ab3f842317c7","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-22T05:11:53Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_2.snaphost deleted file mode 100644 index c159c15508..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 539 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 74 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d97a799aa2ae9e808d1","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"687f1d9944f1ab3f842317c7","retentionUnit":"days","retentionValue":1}],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:53Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..46a18eff6d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 541 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:16 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 70 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824ba8b448981053345e17","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"68824bacb448981053345f0e","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-24T15:05:16Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_2.snaphost new file mode 100644 index 0000000000..4b6e423ca6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 539 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:29 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824ba8b448981053345e17","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"68824bacb448981053345f0e","retentionUnit":"days","retentionValue":1}],"state":"ACTIVE","updatedDate":"2025-07-24T15:05:16Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/POST_api_atlas_v2_groups_1.snaphost index e14113dcce..ace6278e2c 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1097 +Content-Length: 1098 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT +Date: Thu, 24 Jul 2025 15:05:12 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2026 +X-Envoy-Upstream-Service-Time: 3520 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:53Z","id":"687f1d97a799aa2ae9e808d1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d97a799aa2ae9e808d1/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"compliance-policy-pointintimerestore-e2e-34","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:16Z","id":"68824ba8b448981053345e17","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba8b448981053345e17/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"compliance-policy-pointintimerestore-e2e-530","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost deleted file mode 100644 index c0d427ef3d..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 541 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 161 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d97a799aa2ae9e808d1","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"687f1d9944f1ab3f842317c7","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-22T05:11:53Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..5d7e3a2945 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 541 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:16 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 184 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824ba8b448981053345e17","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"68824bacb448981053345f0e","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-24T15:05:16Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 30440fa362..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 539 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 73 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d97a799aa2ae9e808d1","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"687f1d9944f1ab3f842317c7","retentionUnit":"days","retentionValue":1}],"state":"ACTIVE","updatedDate":"2025-07-22T05:11:53Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..91d7296603 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/GET_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 539 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:29 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 62 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824ba8b448981053345e17","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"68824bacb448981053345f0e","retentionUnit":"days","retentionValue":1}],"state":"ACTIVE","updatedDate":"2025-07-24T15:05:16Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 1053561554..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_687f1d97a799aa2ae9e808d1_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 540 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 189 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":true,"projectId":"687f1d97a799aa2ae9e808d1","restoreWindowDays":1,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"687f1d9944f1ab3f842317c7","retentionUnit":"days","retentionValue":1}],"state":"UPDATING","updatedDate":"2025-07-22T05:11:58Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..0159ef97a4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPointInTimeRestore/enable/PUT_api_atlas_v2_groups_68824ba8b448981053345e17_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 540 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:29 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 189 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":true,"projectId":"68824ba8b448981053345e17","restoreWindowDays":1,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"hourly","id":"68824bacb448981053345f0e","retentionUnit":"days","retentionValue":1}],"state":"UPDATING","updatedDate":"2025-07-24T15:05:29Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost deleted file mode 100644 index 96f1e1de12..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d9f44f1ab3f84231885","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:12:02Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_2.snaphost deleted file mode 100644 index 0029cfaef1..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 417 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 64 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d9f44f1ab3f84231885","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-22T05:12:02Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..4f962e6bb2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824bba42be0f23307f3c8a","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:05:33Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_2.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_2.snaphost new file mode 100644 index 0000000000..9fe233c155 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/GET_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 417 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::getDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824bba42be0f23307f3c8a","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ACTIVE","updatedDate":"2025-07-24T15:05:33Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/POST_api_atlas_v2_groups_1.snaphost index f3835e78cd..5a50280c33 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1097 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:59 GMT +Date: Thu, 24 Jul 2025 15:05:30 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2584 +X-Envoy-Upstream-Service-Time: 2456 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:02Z","id":"687f1d9f44f1ab3f84231885","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9f44f1ab3f84231885/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"describe-compliance-policy-policies-e2e-733","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:32Z","id":"68824bba42be0f23307f3c8a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bba42be0f23307f3c8a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"describe-compliance-policy-policies-e2e-920","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost deleted file mode 100644 index e84c1b51c6..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_687f1d9f44f1ab3f84231885_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 419 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 186 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1d9f44f1ab3f84231885","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-22T05:12:02Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..a69539d07f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicyPoliciesDescribe/PUT_api_atlas_v2_groups_68824bba42be0f23307f3c8a_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 419 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 190 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824bba42be0f23307f3c8a","restoreWindowDays":0,"scheduledPolicyItems":[],"state":"ENABLING","updatedDate":"2025-07-24T15:05:33Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/POST_api_atlas_v2_groups_1.snaphost index 19b2f370a0..ac0cfbd7a7 100644 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1085 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:08 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1684 +X-Envoy-Upstream-Service-Time: 2779 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:09Z","id":"687f1da844f1ab3f8423193b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1da844f1ab3f8423193b/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-compliance-policy-e2e-882","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:41Z","id":"68824bc2b448981053346169","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc2b448981053346169/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-compliance-policy-e2e-880","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_687f1da844f1ab3f8423193b_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_687f1da844f1ab3f8423193b_backupCompliancePolicy_1.snaphost deleted file mode 100644 index e12237e2ea..0000000000 --- a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_687f1da844f1ab3f8423193b_backupCompliancePolicy_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 540 -Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 149 -X-Frame-Options: DENY -X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"687f1da844f1ab3f8423193b","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"daily","id":"687f1daa44f1ab3f8423199c","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-22T05:12:10Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_68824bc2b448981053346169_backupCompliancePolicy_1.snaphost b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_68824bc2b448981053346169_backupCompliancePolicy_1.snaphost new file mode 100644 index 0000000000..8de2fd6adf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestBackupCompliancePolicySetup/PUT_api_atlas_v2_groups_68824bc2b448981053346169_backupCompliancePolicy_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 540 +Content-Type: application/vnd.atlas.2023-10-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 169 +X-Frame-Options: DENY +X-Java-Method: ApiDiskBackupDataProtectionResource::updateDataProtectionSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authorizedEmail":"firstname.lastname@example.com","authorizedUserFirstName":"firstname","authorizedUserLastName":"lastname","copyProtectionEnabled":false,"deletable":false,"encryptionAtRestEnabled":false,"onDemandPolicyItem":null,"pitEnabled":false,"projectId":"68824bc2b448981053346169","restoreWindowDays":0,"scheduledPolicyItems":[{"frequencyInterval":1,"frequencyType":"daily","id":"68824bc5b4489810533461e1","retentionUnit":"days","retentionValue":1}],"state":"ENABLING","updatedDate":"2025-07-24T15:05:41Z","updatedUser":"nmtxqlkl"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_index_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_index_1.snaphost deleted file mode 100644 index 1329b1c25e..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_index_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1303 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClustersIndexResource::createRollingIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_index_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_index_1.snaphost new file mode 100644 index 0000000000..321be0d3bc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Create_index_with_unknown_fields/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_index_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClustersIndexResource::createRollingIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_1.snaphost deleted file mode 100644 index c733b733e3..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 2776 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1615 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:24Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80480","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_1.snaphost new file mode 100644 index 0000000000..8120aaa0ff --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Create_via_file/POST_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 2776 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:23 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 879 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:23Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb3b44898105334603e","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost deleted file mode 100644 index e41258d5fa..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:11 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 350 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost new file mode 100644 index 0000000000..cd41a1f9ad --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Delete_file_creation/DELETE_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 299 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 73f496bfc4..4917b1005b 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFile/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestClustersFile/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:23 GMT +Date: Thu, 24 Jul 2025 15:05:22 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/POST_api_atlas_v2_groups_1.snaphost index d2d21593bd..18d1953aed 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFile/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestClustersFile/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1074 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT +Date: Thu, 24 Jul 2025 15:05:20 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1655 +X-Envoy-Upstream-Service-Time: 2596 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:23Z","id":"687f1d79a799aa2ae9e803dd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersFile-e2e-649","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:22Z","id":"68824bb042be0f23307f3ae3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersFile-e2e-815","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost deleted file mode 100644 index af02ec3bfb..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3271 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-727-shard-00-00.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-01.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-02.xokpsm.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-u38cvj-shard-0","standardSrv":"mongodb+srv://cluster-727.xokpsm.mongodb-dev.net"},"createDate":"2025-07-22T05:11:24Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80489","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 4675847891..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 42 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:10 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost new file mode 100644 index 0000000000..f07720ae90 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3271 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 127 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-192-shard-00-00.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-01.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-02.unu0xw.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-6fzq6a-shard-0","standardSrv":"mongodb+srv://cluster-192.unu0xw.mongodb-dev.net"},"createDate":"2025-07-24T15:05:23Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb3b448981053346048","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..fcf520a099 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 42 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:23 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 90 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost deleted file mode 100644 index 3aa2a15a05..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3054 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:10 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 971 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-727-shard-00-00.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-01.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-02.xokpsm.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-u38cvj-shard-0","standardSrv":"mongodb+srv://cluster-727.xokpsm.mongodb-dev.net"},"createDate":"2025-07-22T05:11:24Z","diskSizeGB":40.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80480","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost new file mode 100644 index 0000000000..5e9a869ab4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Update_via_file/PATCH_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 3054 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:24 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 938 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-192-shard-00-00.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-01.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-02.unu0xw.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-6fzq6a-shard-0","standardSrv":"mongodb+srv://cluster-192.unu0xw.mongodb-dev.net"},"createDate":"2025-07-24T15:05:23Z","diskSizeGB":40.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb3b44898105334603e","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost deleted file mode 100644 index 851627b714..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2776 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 117 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:24Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80480","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_2.snaphost deleted file mode 100644 index 341dda0876..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2970 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:24Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80489","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_3.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_3.snaphost deleted file mode 100644 index 58ec201224..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_687f1d79a799aa2ae9e803dd_clusters_cluster-727_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3271 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:07 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-727-shard-00-00.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-01.xokpsm.mongodb-dev.net:27017,cluster-727-shard-00-02.xokpsm.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-u38cvj-shard-0","standardSrv":"mongodb+srv://cluster-727.xokpsm.mongodb-dev.net"},"createDate":"2025-07-22T05:11:24Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7ca799aa2ae9e80496","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d79a799aa2ae9e803dd/clusters/cluster-727/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-727","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7ba799aa2ae9e80489","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"687f1d7ba799aa2ae9e80488","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost new file mode 100644 index 0000000000..633c919a9f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2776 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:24 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:23Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb3b44898105334603e","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_2.snaphost new file mode 100644 index 0000000000..a0e35e7c2d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2970 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:23Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb3b448981053346048","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_3.snaphost b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_3.snaphost new file mode 100644 index 0000000000..1a2567421c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFile/Watch/GET_api_atlas_v2_groups_68824bb042be0f23307f3ae3_clusters_cluster-192_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3271 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-192-shard-00-00.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-01.unu0xw.mongodb-dev.net:27017,cluster-192-shard-00-02.unu0xw.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-6fzq6a-shard-0","standardSrv":"mongodb+srv://cluster-192.unu0xw.mongodb-dev.net"},"createDate":"2025-07-24T15:05:23Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bb042be0f23307f3ae3","id":"68824bb3b448981053346052","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bb042be0f23307f3ae3/clusters/cluster-192/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-192","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb3b448981053346048","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":6,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"},{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":true}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":1},"priority":5,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_WEST_1"}],"zoneId":"68824bb3b448981053346047","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFile/memory.json b/test/e2e/testdata/.snapshots/TestClustersFile/memory.json index ba53130519..b499c613ea 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFile/memory.json +++ b/test/e2e/testdata/.snapshots/TestClustersFile/memory.json @@ -1 +1 @@ -{"TestClustersFile/clusterFileName":"cluster-727"} \ No newline at end of file +{"TestClustersFile/clusterFileName":"cluster-192"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index 97fed6e513..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1919 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e80716","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost deleted file mode 100644 index 961eb614a9..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2220 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e80716","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..4938e3a233 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1919 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 127 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8942be0f23307f342b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost new file mode 100644 index 0000000000..c04bdc94ec --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2220 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8942be0f23307f342b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost deleted file mode 100644 index 487e2b14d1..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1833 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:41 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1184 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost new file mode 100644 index 0000000000..d9d369e38d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Create/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1833 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:40 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1729 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_index_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_index_1.snaphost deleted file mode 100644 index 429071109c..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_index_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 637 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClustersIndexResource::createRollingIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_index_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_index_1.snaphost new file mode 100644 index 0000000000..05d08dc72a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Create_Rolling_Index/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_index_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 693 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClustersIndexResource::createRollingIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index 63eb82525a..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:25 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 493 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..ea6df9dbc0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 488 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index 9943f2be0f..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2197 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:25 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-925","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e80716","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost deleted file mode 100644 index d5c07a58b3..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:21:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-925 exists in group 687f1d8aa799aa2ae9e8067f.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-925","687f1d8aa799aa2ae9e8067f"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..fd9cca3112 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2197 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-759","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8942be0f23307f342b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost new file mode 100644 index 0000000000..ceac03f616 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Delete/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:16:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-759 exists in group 68824b8642be0f23307f33bd.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-759","68824b8642be0f23307f33bd"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index c392da6782..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2134 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:20 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..35fbe6a0f6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2134 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:31 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost deleted file mode 100644 index bd2c14bfbe..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 542 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:21 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::getProcessArgs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"changeStreamOptionsPreAndPostImagesExpireAfterSeconds":null,"chunkMigrationConcurrency":null,"customOpensslCipherConfigTls12":[],"defaultMaxTimeMS":null,"defaultReadConcern":null,"defaultWriteConcern":"majority","failIndexKeyTooLong":null,"javascriptEnabled":true,"minimumEnabledTlsProtocol":"TLS1_2","noTableScan":false,"oplogMinRetentionHours":null,"oplogSizeMB":null,"queryStatsLogVerbosity":null,"sampleRefreshIntervalBIConnector":null,"sampleSizeBIConnector":null,"tlsCipherConfigMode":"DEFAULT","transactionLifetimeLimitSeconds":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost new file mode 100644 index 0000000000..381e4617dc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Advanced_Configuration_Settings/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 542 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:33 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::getProcessArgs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"changeStreamOptionsPreAndPostImagesExpireAfterSeconds":null,"chunkMigrationConcurrency":null,"customOpensslCipherConfigTls12":[],"defaultMaxTimeMS":null,"defaultReadConcern":null,"defaultWriteConcern":"majority","failIndexKeyTooLong":null,"javascriptEnabled":true,"minimumEnabledTlsProtocol":"TLS1_2","noTableScan":false,"oplogMinRetentionHours":null,"oplogSizeMB":null,"queryStatsLogVerbosity":null,"sampleRefreshIntervalBIConnector":null,"sampleSizeBIConnector":null,"tlsCipherConfigMode":"DEFAULT","transactionLifetimeLimitSeconds":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index 5d32d64032..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2134 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:20 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 122 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..d07f53ea42 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Describe_Connection_String/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2134 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:32 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index 6f9061290b..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 412 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:19:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 142 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot terminate a cluster when termination protection is enabled. Disable termination protection and try again.","error":400,"errorCode":"CANNOT_TERMINATE_CLUSTER_WHEN_TERMINATION_PROTECTION_ENABLED","parameters":["Cannot terminate cluster cluster-925 in group 687f1d8aa799aa2ae9e8067f because termination protection is enabled. Disable termination protection and try again."],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..e7b8c55a59 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Fail_Delete_for_Termination_Protection_enabled/DELETE_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 412 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:13:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 132 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot terminate a cluster when termination protection is enabled. Disable termination protection and try again.","error":400,"errorCode":"CANNOT_TERMINATE_CLUSTER_WHEN_TERMINATION_PROTECTION_ENABLED","parameters":["Cannot terminate cluster cluster-759 in group 68824b8642be0f23307f33bd because termination protection is enabled. Disable termination protection and try again."],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_provider_regions_1.snaphost deleted file mode 100644 index 0f7918b1ed..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:40 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 109 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..96e7fa7d52 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 165 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 4e63bcfd8f..20752cda21 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:40 GMT +Date: Thu, 24 Jul 2025 15:04:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost deleted file mode 100644 index 9e9fedbf2f..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2358 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:20 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getAllClusters -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters?includeCount=true&includeDeletedWithRetainedBackups=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost new file mode 100644 index 0000000000..c26936651d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/List/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2358 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:31 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getAllClusters +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters?includeCount=true&includeDeletedWithRetainedBackups=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_sampleDatasetLoad_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_sampleDatasetLoad_cluster-925_1.snaphost deleted file mode 100644 index 4a78aa0dee..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_sampleDatasetLoad_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 156 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 165 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f5844f1ab3f842322a5","clusterName":"cluster-925","completeDate":null,"createDate":"2025-07-22T05:19:20Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_sampleDatasetLoad_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_sampleDatasetLoad_cluster-759_1.snaphost new file mode 100644 index 0000000000..4828573f88 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Load_Sample_Data/POST_api_atlas_v2_groups_68824b8642be0f23307f33bd_sampleDatasetLoad_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 156 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 149 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824d9bb448981053346f63","clusterName":"cluster-759","completeDate":null,"createDate":"2025-07-24T15:13:31Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/POST_api_atlas_v2_groups_1.snaphost index 888f2d2ab2..f985897970 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1075 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:38 GMT +Date: Thu, 24 Jul 2025 15:04:38 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1798 +X-Envoy-Upstream-Service-Time: 1258 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:40Z","id":"687f1d8aa799aa2ae9e8067f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersFlags-e2e-719","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:39Z","id":"68824b8642be0f23307f33bd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersFlags-e2e-173","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index f3018e3091..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2224 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 100 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e80716","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost deleted file mode 100644 index cf9cb385db..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_2.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2138 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:23 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 97 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 42ad4b6021..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 42 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:23 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..7a4a25389a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2220 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 119 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"7.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8942be0f23307f342b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost new file mode 100644 index 0000000000..25ca69f72a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_2.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2134 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:35 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 98 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"7.0","mongoDBVersion":"7.0.22","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..47b10ab231 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/GET_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 42 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:35 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost deleted file mode 100644 index d4bb45758e..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2139 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:23 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 910 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-925-shard-00-00.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-01.cqetl8.mongodb-dev.net:27017,cluster-925-shard-00-02.cqetl8.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-c3jktb-shard-0","standardSrv":"mongodb+srv://cluster-925.cqetl8.mongodb-dev.net"},"createDate":"2025-07-22T05:11:41Z","diskSizeGB":40.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8da799aa2ae9e80747","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8aa799aa2ae9e8067f/clusters/cluster-925/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-925","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8da799aa2ae9e806ef","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8da799aa2ae9e80715","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost new file mode 100644 index 0000000000..02e55be807 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Update/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2139 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:35 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1302 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-759-shard-00-00.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-01.jrtu7v.mongodb-dev.net:27017,cluster-759-shard-00-02.jrtu7v.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8rxpgp-shard-0","standardSrv":"mongodb+srv://cluster-759.jrtu7v.mongodb-dev.net"},"createDate":"2025-07-24T15:04:41Z","diskSizeGB":40.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8642be0f23307f33bd","id":"68824b8942be0f23307f3434","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8642be0f23307f33bd/clusters/cluster-759/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-759","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8842be0f23307f3422","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8942be0f23307f342a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost deleted file mode 100644 index 83845e7aea..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_687f1d8aa799aa2ae9e8067f_clusters_cluster-925_processArgs_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 542 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:21 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 339 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::updateProcessArgs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"changeStreamOptionsPreAndPostImagesExpireAfterSeconds":null,"chunkMigrationConcurrency":null,"customOpensslCipherConfigTls12":[],"defaultMaxTimeMS":null,"defaultReadConcern":null,"defaultWriteConcern":"majority","failIndexKeyTooLong":null,"javascriptEnabled":true,"minimumEnabledTlsProtocol":"TLS1_2","noTableScan":false,"oplogMinRetentionHours":null,"oplogSizeMB":null,"queryStatsLogVerbosity":null,"sampleRefreshIntervalBIConnector":null,"sampleSizeBIConnector":null,"tlsCipherConfigMode":"DEFAULT","transactionLifetimeLimitSeconds":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost new file mode 100644 index 0000000000..b474c027d6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/Update_Advanced_Configuration_Settings/PATCH_api_atlas_v2_groups_68824b8642be0f23307f33bd_clusters_cluster-759_processArgs_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 542 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:32 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 295 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::updateProcessArgs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"changeStreamOptionsPreAndPostImagesExpireAfterSeconds":null,"chunkMigrationConcurrency":null,"customOpensslCipherConfigTls12":[],"defaultMaxTimeMS":null,"defaultReadConcern":null,"defaultWriteConcern":"majority","failIndexKeyTooLong":null,"javascriptEnabled":true,"minimumEnabledTlsProtocol":"TLS1_2","noTableScan":false,"oplogMinRetentionHours":null,"oplogSizeMB":null,"queryStatsLogVerbosity":null,"sampleRefreshIntervalBIConnector":null,"sampleSizeBIConnector":null,"tlsCipherConfigMode":"DEFAULT","transactionLifetimeLimitSeconds":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersFlags/memory.json b/test/e2e/testdata/.snapshots/TestClustersFlags/memory.json index 9928eef3b0..23e35704c7 100644 --- a/test/e2e/testdata/.snapshots/TestClustersFlags/memory.json +++ b/test/e2e/testdata/.snapshots/TestClustersFlags/memory.json @@ -1 +1 @@ -{"TestClustersFlags/clusterName":"cluster-925"} \ No newline at end of file +{"TestClustersFlags/clusterName":"cluster-759"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_1.snaphost deleted file mode 100644 index bfa1f741e1..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1351 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:28 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 761 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d8044f1ab3f8423141f","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-402","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f84231412","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f8423141a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_1.snaphost new file mode 100644 index 0000000000..2f55582845 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Create/POST_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1351 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:51 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 895 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bcd42be0f23307f3e00","id":"68824bcfb448981053346272","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-385","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bcfb448981053346266","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bcfb44898105334626d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost deleted file mode 100644 index f6ac2f9dbc..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 337 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost new file mode 100644 index 0000000000..33d7987e86 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Delete/DELETE_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 292 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost deleted file mode 100644 index 6c5041e3fd..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1357 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 93 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d8044f1ab3f8423141f","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-402","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f84231412","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f8423141a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost new file mode 100644 index 0000000000..8cfb7058ef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Describe/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1357 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:56 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 91 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bcd42be0f23307f3e00","id":"68824bcfb448981053346272","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-385","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bcfb448981053346266","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bcfb44898105334626d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/POST_api_atlas_v2_groups_1.snaphost index fd86cb6d1b..be51c2ce6a 100644 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1072 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT +Date: Thu, 24 Jul 2025 15:05:49 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2013 +X-Envoy-Upstream-Service-Time: 1628 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:27Z","id":"687f1d7d44f1ab3f842312d4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersM0-e2e-863","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:50Z","id":"68824bcd42be0f23307f3e00","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersM0-e2e-394","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost deleted file mode 100644 index 02a073927a..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1361 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d8044f1ab3f8423141f","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-402","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f84231412","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f8423141a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_2.snaphost deleted file mode 100644 index 471d6fec93..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1411 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 116 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d8044f1ab3f8423141f","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-402","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f8423141b","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f8423141a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_3.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_3.snaphost deleted file mode 100644 index 1e0e928fb1..0000000000 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_687f1d7d44f1ab3f842312d4_clusters_cluster-402_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1407 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d8044f1ab3f8423141f","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7d44f1ab3f842312d4/clusters/cluster-402/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-402","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f8423141b","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f8423141a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost new file mode 100644 index 0000000000..8b019ffe88 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1361 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:52 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bcd42be0f23307f3e00","id":"68824bcfb448981053346272","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-385","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bcfb448981053346266","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bcfb44898105334626d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_2.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_2.snaphost new file mode 100644 index 0000000000..68941090a5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1411 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:52 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bcd42be0f23307f3e00","id":"68824bcfb448981053346272","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-385","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bcfb44898105334626e","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bcfb44898105334626d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_3.snaphost b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_3.snaphost new file mode 100644 index 0000000000..e5f4ddc346 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/Watch/GET_api_atlas_v2_groups_68824bcd42be0f23307f3e00_clusters_cluster-385_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1407 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bcd42be0f23307f3e00","id":"68824bcfb448981053346272","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bcd42be0f23307f3e00/clusters/cluster-385/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-385","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bcfb44898105334626e","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bcfb44898105334626d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestClustersM0Flags/memory.json b/test/e2e/testdata/.snapshots/TestClustersM0Flags/memory.json index d9eb335161..a3e137cb2b 100644 --- a/test/e2e/testdata/.snapshots/TestClustersM0Flags/memory.json +++ b/test/e2e/testdata/.snapshots/TestClustersM0Flags/memory.json @@ -1 +1 @@ -{"TestClustersM0Flags/clusterName":"cluster-402"} \ No newline at end of file +{"TestClustersM0Flags/clusterName":"cluster-385"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost deleted file mode 100644 index 5f5d7048a8..0000000000 --- a/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 16 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::getAWSCustomDNSEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost new file mode 100644 index 0000000000..79e4dde07c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestCustomDNS/Describe/GET_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 16 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 65 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::getAWSCustomDNSEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost deleted file mode 100644 index 038c5f3643..0000000000 --- a/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 64 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::updateAWSCustomDNSEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost new file mode 100644 index 0000000000..43945506e0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestCustomDNS/Disable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::updateAWSCustomDNSEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost deleted file mode 100644 index b8e68e7cc1..0000000000 --- a/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_687f1de644f1ab3f84231c10_awsCustomDNS_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 16 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:12 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::updateAWSCustomDNSEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost new file mode 100644 index 0000000000..9baa0dfcb7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestCustomDNS/Enable/PATCH_api_atlas_v2_groups_68824beeb4489810533465c4_awsCustomDNS_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 16 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 68 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasAWSCustomDNSEnabledResource::updateAWSCustomDNSEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestCustomDNS/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestCustomDNS/POST_api_atlas_v2_groups_1.snaphost index c7317b0900..d5c26b48f6 100644 --- a/test/e2e/testdata/.snapshots/TestCustomDNS/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestCustomDNS/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1069 +Content-Length: 1071 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:10 GMT +Date: Thu, 24 Jul 2025 15:06:22 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1698 +X-Envoy-Upstream-Service-Time: 1363 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:13:12Z","id":"687f1de644f1ab3f84231c10","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1de644f1ab3f84231c10/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"customDNS-e2e-3","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:23Z","id":"68824beeb4489810533465c4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824beeb4489810533465c4/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"customDNS-e2e-730","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost index 472210d937..088b8ad3b9 100644 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 202 Accepted Content-Length: 236 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:08 GMT +Date: Thu, 24 Jul 2025 15:06:20 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 186 +X-Envoy-Upstream-Service-Time: 177 X-Frame-Options: DENY X-Java-Method: ApiAtlasCustomDBRoleResource::createCustomDBRole X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-735"} \ No newline at end of file +{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-602"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost new file mode 100644 index 0000000000..ef6d62a65b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 147 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCustomDBRoleResource::deleteCustomDBRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost deleted file mode 100644 index fe6a6210e0..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 142 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCustomDBRoleResource::deleteCustomDBRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost new file mode 100644 index 0000000000..eb0776f95e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 236 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCustomDBRoleResource::getCustomDBRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-602"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost deleted file mode 100644 index 1825b64dfd..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 236 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCustomDBRoleResource::getCustomDBRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-735"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost index e76241ceac..5e191975ad 100644 --- a/test/e2e/testdata/.snapshots/TestDBRoles/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBRoles/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 2196 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:08 GMT +Date: Thu, 24 Jul 2025 15:06:20 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 89 +X-Envoy-Upstream-Service-Time: 99 X-Frame-Options: DENY X-Java-Method: ApiAtlasCustomDBRoleResource::getCustomDBRoles X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -[{"actions":[{"action":"UPDATE","resources":[{"db":"db"}]}],"inheritedRoles":[],"roleName":"role-282"},{"actions":[{"action":"UPDATE","resources":[{"db":"db"}]}],"inheritedRoles":[],"roleName":"role-159"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-913"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-79"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-578"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-858"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-166"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-612"},{"actions":[{"action":"CREATE_INDEX","resources":[{"collection":"test1","db":"sample_restaurants"}]},{"action":"FIND","resources":[{"collection":"test2","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew"},{"actions":[{"action":"FIND","resources":[{"collection":"test4","db":"sample_restaurants"},{"collection":"test3","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew21"},{"actions":[{"action":"FIND","resources":[{"collection":"test4","db":"sample_restaurants"},{"collection":"test3","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew2"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-71"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-662"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-735"}] \ No newline at end of file +[{"actions":[{"action":"UPDATE","resources":[{"db":"db"}]}],"inheritedRoles":[],"roleName":"role-282"},{"actions":[{"action":"UPDATE","resources":[{"db":"db"}]}],"inheritedRoles":[],"roleName":"role-159"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-913"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-79"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-578"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-858"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-166"},{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[],"roleName":"role-612"},{"actions":[{"action":"CREATE_INDEX","resources":[{"collection":"test1","db":"sample_restaurants"}]},{"action":"FIND","resources":[{"collection":"test2","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew"},{"actions":[{"action":"FIND","resources":[{"collection":"test4","db":"sample_restaurants"},{"collection":"test3","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew21"},{"actions":[{"action":"FIND","resources":[{"collection":"test4","db":"sample_restaurants"},{"collection":"test3","db":"sample_restaurants"}]}],"inheritedRoles":[],"roleName":"testnew2"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-71"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-662"},{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-602"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost new file mode 100644 index 0000000000..6de2c424af --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 151 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 135 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCustomDBRoleResource::patchCustomDBRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-602"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost deleted file mode 100644 index 093859e344..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 151 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 152 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCustomDBRoleResource::patchCustomDBRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-735"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost new file mode 100644 index 0000000000..758b456689 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 236 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 79 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCustomDBRoleResource::getCustomDBRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-602"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost deleted file mode 100644 index ccc18eda1a..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/GET_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 236 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 75 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCustomDBRoleResource::getCustomDBRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"actions":[{"action":"UPDATE","resources":[{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"}],"roleName":"role-735"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost new file mode 100644 index 0000000000..d9ecac53e0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-602_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 361 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 152 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCustomDBRoleResource::patchCustomDBRole +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]},{"action":"UPDATE","resources":[{"collection":"collection","db":"db2"},{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"},{"db":"mydb","role":"read"}],"roleName":"role-602"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost b/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost deleted file mode 100644 index eaf74a0f23..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBRoles/Update_with_append/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_customDBRoles_roles_role-735_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 361 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 163 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCustomDBRoleResource::patchCustomDBRole -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"actions":[{"action":"LIST_SESSIONS","resources":[{"cluster":true}]},{"action":"UPDATE","resources":[{"collection":"collection","db":"db2"},{"collection":"collection","db":"db"}]},{"action":"FIND","resources":[{"collection":"collection2","db":"db"}]}],"inheritedRoles":[{"db":"admin","role":"enableSharding"},{"db":"mydb","role":"read"}],"roleName":"role-735"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBRoles/memory.json b/test/e2e/testdata/.snapshots/TestDBRoles/memory.json index a418c05adc..3e31d9a473 100644 --- a/test/e2e/testdata/.snapshots/TestDBRoles/memory.json +++ b/test/e2e/testdata/.snapshots/TestDBRoles/memory.json @@ -1 +1 @@ -{"TestDBRoles/rand":"At8="} \ No newline at end of file +{"TestDBRoles/rand":"Alo="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost deleted file mode 100644 index 827c189d3b..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost +++ /dev/null @@ -1,96 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 5077 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:24 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1479 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::generateCert -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - ------BEGIN CERTIFICATE----- -MIIFBzCCAu+gAwIBAgIIP62+pMTwoEMwDQYJKoZIhvcNAQELBQAwSTEhMB8GA1UE -AxMYNWVmZGE2YWVhM2YyZWQyZTdkZDZjZTA1MQ4wDAYDVQQLEwVBdGxhczEUMBIG -A1UEChMLTW9uZ29EQiBJbmMwHhcNMjUwNzIyMDQxMzI0WhcNMjUxMDIyMDUxMzI0 -WjASMRAwDgYDVQQDEwd1c2VyNjI1MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEA2t4O5srJOYAmUIKcYk9Ph/Y2Xch0BUjtPT4oZNYrou6L4jKipZIo65rg -0CMaWwR7JNkkiytqGLpHDDNJlpp+ww04BRLqqapkA1Ld2P2XYLXzE/c+vc4ERv1l -jL91CGaIL8JMPW4DxfZ/TZQCotTni8p4YvbZpaHkgfO0dchphjreKxi6631HDhSS -5+k7fAWq4j5E6rg9fxvI/GPmA6/fZYffWOH+egTTF6Wud//QG8tCWuUmpPMT2UcE -8TDbmuJQFk9rOvzh+s4heN+eR8Es4ZvQqXUzen2bQicz5uwxPAlwdI0NUNAa+4HK -NdOic+OATb0bVgzu0zyrLBTaM7UttfYdqoa0lDCYZxSXMcmvkuwk9+0F323e5fuY -Pmh8LR7cYrSoP2uyLPydcoQRzVYWMy1p/eLfhv0HiRIyPw3gFZ3IBb4IQ1Vzs9Lk -a+fCmUT24kY+A1JrIdFgwe99nzcWNpx0QxIOMClkqlbGR65U4SkekXXvcUo9Pklj -oFWHqIS6ZqpOo88y8f6ftKL/9uTk2ozeeNDG/8LP3955llynXebzd0qOjLJX/UFT -KyMg1Nh5mrTu9QIR2DojqKtQLiAYoml482bSuFGzfbZSyyXXB0Uyh7BKaIPB6WrK -8QZtzUKSdxD4FV94eo/yTaSr8MFRC8DZ2NHcRhtgFlZbjXqu4ncCAwEAAaMqMCgw -DgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMCMA0GCSqGSIb3 -DQEBCwUAA4ICAQCIl2VQB0pWrBVAqllNhfmDIieLaDlC3Ry2Drmkxwzpe5wNTA4V -GQ6ms35wSzBlfxPhjDUsUg+qyAQg7jS7Og88T4tOY8R9rhL7sJZSYvRXZk92Latp -J9Z1HsC3BrT2pBE55i1E+4LLWMUi9Yfxk5fzQaHFgwd23E7L4z5CPcI4fPEYGPX9 -DAPnFoh2lpyvmCYpdtNSRZ26lc2o+IS721MhPuwTHjJ0g/eOT7HNYEru0NsHEpM/ -LR51F5bG8TZymaMvOyuYX6jqVwiU7RR/mPF6Fmg0wLIgJNGi5p6h5f1Z1OTf1c3y -7WJlYkeF4qsOjKPumcMTpAfvSwNGFoJvNjPHIkjfekrsiG+4g+q9owGJNp42tvrW -6serCky+BjGffIO0nmVHnftLWIykpROB0MaZ7aV4paQl14xEWAJxMCpykbfgHlAK -Ml2StYkULLOPtbZ13KwOtbCJ+6Pa4T9RCnxTbnan7y+Oo4CSP7z2CdDj8pmLY1+k -nCXyqAt9zxvUX+JA0lEOP+qzsjSfZ9XXdOUKoZZiovWeZFhggUfPJQIW9czZ64PE -MS/yfrkR8zPpirqx9mDhPOAWTvJMaA1Se5/9yyMJ3CplKQ2dLgJ4qiYSb0DOEfuh -Cj/8f6P0fzy4Kfj5U7x20PMmeOyAQ5ToBNkMmAawnpCVlfaXI4gp0ds8Lg== ------END CERTIFICATE----- ------BEGIN PRIVATE KEY----- -MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDa3g7mysk5gCZQ -gpxiT0+H9jZdyHQFSO09Pihk1iui7oviMqKlkijrmuDQIxpbBHsk2SSLK2oYukcM -M0mWmn7DDTgFEuqpqmQDUt3Y/ZdgtfMT9z69zgRG/WWMv3UIZogvwkw9bgPF9n9N -lAKi1OeLynhi9tmloeSB87R1yGmGOt4rGLrrfUcOFJLn6Tt8BariPkTquD1/G8j8 -Y+YDr99lh99Y4f56BNMXpa53/9Aby0Ja5Sak8xPZRwTxMNua4lAWT2s6/OH6ziF4 -355HwSzhm9CpdTN6fZtCJzPm7DE8CXB0jQ1Q0Br7gco106Jz44BNvRtWDO7TPKss -FNoztS219h2qhrSUMJhnFJcxya+S7CT37QXfbd7l+5g+aHwtHtxitKg/a7Is/J1y -hBHNVhYzLWn94t+G/QeJEjI/DeAVncgFvghDVXOz0uRr58KZRPbiRj4DUmsh0WDB -732fNxY2nHRDEg4wKWSqVsZHrlThKR6Rde9xSj0+SWOgVYeohLpmqk6jzzLx/p+0 -ov/25OTajN540Mb/ws/f3nmWXKdd5vN3So6Mslf9QVMrIyDU2HmatO71AhHYOiOo -q1AuIBiiaXjzZtK4UbN9tlLLJdcHRTKHsEpog8HpasrxBm3NQpJ3EPgVX3h6j/JN -pKvwwVELwNnY0dxGG2AWVluNeq7idwIDAQABAoICAAhxnX8BJiYjepbvWUSgIpOi -FevdVBT/AMQYRDJZ8K9ekdxwBOKytlo3RX81upigrFoBMQ3mH5taSGvBBTtjCid7 -f8u530VyGc9Yknn0W4isIbBa5IKbi2XsLcErLYoWe+eQrUEWH9150auaXYBWJzJF -gbUpDE39u8cSI9R0kN0z6oo4/k2Rn5IY4hnQQxlnazzt0C9msermFVrKfk2Gqt9T -EJEbHnvyTdCNyvgvNKJ134hto5AzAh3AGyxQ8/OJJxd/CI1rNWeSu7m+eQxlhqt3 -jvGStbAbe3KKozNc5mUkuhVwlv8W4ESBaaT/pH39wFFGlNR1xZr9PHvLKmCTwnJ3 -Qms+P5tjoovpYwtfFUJJ6zfzIuWaWTCByBhVmNdfPPo1g/qti4XQK+RfIrEtazAh -p1v/SWGTe1G+Ktk66kdU0RpEkdAJPZyHM+iyiPOqVua23S+IP3jj/WwIZao0+Q6L -4XYDxQwtyFnXlCPmMPIJAFDs9JMPIBVyyS6HMC1h+mKybypXzXc6IxZmXONAE4Bj -NQAHayrPLmcDZtCNHU+NLUUhdZYWquZE9rwmLVQQ0JWtuQe9AaRdpC4YGlxszDKb -ZYjz19Ukzmzt9eponRx9i2yTJLA00bp2r4rm92RXTaJikDLWq8TZASIPuZFIHdTs -9Xf+X3mmuN7IcxPjKYQFAoIBAQDzmuOI91f6UTEJ/1g08XpgJ/0X4hfTwgiyN7bk -QoGvmwIozFwfRWdoMdvLCcvoEvujQCg9P9zL6DpSyIdyrNSpeiHZiieTYQ/YNWDM -xcBOZtMEN3n51Ek6lqEX8g0MkembxojSBIVBqpg8kX7lOJtfGIRQAlulaMxgQB9/ -EYh6cKiTUoW1RPm9r5DGYzn6pq/u69ecZRNfL6y4YxRi59YaKrncUXZgFrq55EeD -k/JYpnBJzzqupAXodx2S3dNmkIppbkNloQOdJDichGHTLqVNVY8lWsbPUoAfItPp -rdiRHPq5tT8ZYaxuC1Sy85PqS1D5Ht2E+DzGp26nhsCkmdQ9AoIBAQDmAPIz09+J -tZGzvHQwQV/KyP1oGmgddJFAKJlvat0ROdyhFHYo2U8+Woj0oKGS67AlD3L/YKIw -q/A3DxpdtOhoLMuY+Wo3TM9JxD4vrDFRyb/68OypknYdoP2Bz6x4uQiJIpS2rJth -ZgPG5spFUiMn3So4BwOvev0QccE6rDmYhHpjdDYw2p9P0W9doGe+pV9NYA08UQC1 -9z57A9IQ6imazp12g3fYN0D05T6wm47vveXvwHpQreGC+m0KXy/obosYY6mSHFOX -nhiYkgX0O/eFg+oxLeBccD+5YKlZPsTN+BAFwHWJaNxroCh5HMkNXBphsp3OYEjw -7P7IMoHDVpjDAoIBACXW9WkdIqlbW0a2RzlSGTQ+ge3nzNOz3C3ywZILUqG4bklw -FQ82dK2WsRGE4AuYh0YAfT+mX+G8nPKm+4MwnYgF1KQ59ZPLC+8Fu5eTUB/dkQGi -rGvGMenL5BIYIzbEo4jy+eXFlf1xRlyCLTfl5xyKbmMPOrUi5jw9Oac/TffW8BiS -RPq3UCPK1a47U5I/uixergs5GB09BpNNsKj8YiGGaYBzlvOuFCsz7nfdz1M950tP -yUm/aLuHZSyfEGtqIFXoLsfmju0l5zVIyvlG0Z6Fn8qpoyApLIWpn0k5G97OpZOb -N8X1ihc941Y4x80pDdbkmHxDIw2ojGOxZtMqofECggEBAIk/OUgJ/xMKoMYTB3Yg -HIxCQUyUrVoeS+pwD5b3urDjyS7pqdSYT/wSRDVNgPzN3U9QF7wiKsZGY1JHleEi -6af4Swmek24qTGtlSgJiiw+WBxQ0HdTWS9tETOHgTbfAGkLSutEC0LlfCZPv9fVF -nSrVg7LpJJ7bEhV0++wKB1hmfS3Jk+i1HGmhvQWuiRmvTt46GcvLPlRXFBaN4hUr -1eXFsxqcOrBv0DgSb8UtHi8bLxFQ1uw7xhzFWLnesRTOmfvUxMQmWQ9ZTK4GPL1P -51TpsZ7lFEO0y6HP914E4aVSiCUWgkyboSQr7trOfX6WXju8PQSAWiZCFYra8Kni -i8cCggEBAPAgmdk24b5MR7tIpKzU5tsAaLof4mHJ5RLJreOFZhFKQYuNSepsvy9s -OigHzGfgcSiUv7n5FtWRk791jtQ1aiqO+n3TrJ5PaYs0MllUpN9BkcaJ7aUCGLjD -V2BZ1w+w81wXfKq06aTE5RDazp4GfSpAB4eNy0chTkbUCH65/UqrE3F64EdJZah0 -p0kFxxydd5iePX16P1U5kMLynfJYNdtrQwHIYz1oOj2wtSzxQuk/ogKa4vNG2kGz -qZGolxXVdTCaBvlW6YTZsQ3BQPeVDY9mWmPtEDDjEU+ytBDOUMUf/xL9igT91VBY -Yvn8xgM1s9ILqrjvGZV4rMwkqfGjcB4= ------END PRIVATE KEY----- diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost new file mode 100644 index 0000000000..a7aadca246 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserCerts/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost @@ -0,0 +1,96 @@ +HTTP/2.0 201 Created +Content-Length: 5077 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 633 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::generateCert +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +-----BEGIN CERTIFICATE----- +MIIFBzCCAu+gAwIBAgIIIjCkvmkgb0kwDQYJKoZIhvcNAQELBQAwSTEhMB8GA1UE +AxMYNWVmZGE2YWVhM2YyZWQyZTdkZDZjZTA1MQ4wDAYDVQQLEwVBdGxhczEUMBIG +A1UEChMLTW9uZ29EQiBJbmMwHhcNMjUwNzI0MTQwNjM1WhcNMjUxMDI0MTUwNjM1 +WjASMRAwDgYDVQQDEwd1c2VyOTY5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEAtz9rgNMwki1Q9QRMODWu6a1xNyt6L9S6OTPzg3wDdNyrEduvSTenl2Vu +xOlP+XBGlburBMKdf32NQMvpjta11WjL0JsfEUtdEFWQ/mGoUORZeF2u0g+S6nBv +C7mHok1nYGswq2jZE8aTgCNi2xpPReyzELDWLBgeFKMwTTw82fRj7cwpBnlWIHB7 +QnLzB6YcjCBhtxTW59LGUGIwtjsdYYeuSCQJGB88BiPUvBzZat0ufUUY8bCzWlDS +9Tu5MwJo2zgPM5Ufnga2RcSduLqLInYVhMzlCUn28SQI/uDZlkuv5UTWVS2M1Zie +ZdWamsNelmhNkR/jdXqEKj3ojAQOXNf7U2TzBemYyETTCGcDHBCuuPIlRDXcFFiB +2AmP+zTB3IdcZOsqV4J5Z//dgZZA5TJxr37Ua8qeRKXy2j3fZiZNkVJ//VGN3I6N +/d/3r58xTxWsigAtkS1YCXMd7IE9NtyrDXZEv/w0588HPMzfTjbYL+r8ben8W3xM +L2CxOMljqJoZicqj8jUPWi/DcF+DBVrYnTvRjf2JGA/GUw8XO0CgG8cKLWruqrv8 +QI21kP9H1Gb+k5B0YJMFdhruvxL7EzBu0maTy9yT/5aJoXeQVij8pOCYQPUz3CCK +JEbI/VRn/mXERqmLt+gvKZdQALYgOs1Pb5Bv1wdWw5GqDFoAI/UCAwEAAaMqMCgw +DgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMCMA0GCSqGSIb3 +DQEBCwUAA4ICAQCNBbBN0Hb4rQTKEYmE0Tp8wMv8nyJbRWrmpjQqO/PlF//7RvZ4 +5A+4IBSPD3Dv9u/SOGc7HBp+Jr7Ci9KHpbQDBM3Ak7J1AL5BQ6HaJzZK6xDDnbMf +1KsOP7rv66+09l385Bdkaud98i5VZVyS3jMggLZ2c1zCizHLsOl7NKtR/gljfvQl +k+/Rjx8BOWSyJa2NYspWaP78eU0WKju1iQLKvcwSycXQy7s4nEnNfAB3hemZ8kFB +RWPBW7r+iW3LepVOOaWxwu8YYvh51pgkfTT4kjZqFud4UlXVDQFro8eu9hUtwBSN +/ZTRiTLuBqGBiQYnWjhU0onaDF4N0sLVmzOQzG0snsibiDmypfbr9eS8R+UmVWkq +a8JYOASqid3XZdnw5dSINkdWoyNs5F8tuN8e2vIqpyRwOQv+4Bpbt+IB/77kQMjA +xXpIhGdhJMVmQgs9PI2u4FAJCPYNXQrDs/eT3VwRAHtWsF1zB0/eMtxXfI+JNlKc +vbqNO4Jz3cwz3KlYtseWMUsEF05jBPzB+Y+PKKKKC1eymfyWKkYrhTI9rGoL98w9 +AU1VaomNMfVq+mXVPiiher8YCXHTRRg/Yxvhrpw+hWhtIxpwSQ3yyXkdeL5Uq6Nt +O1Wml0MI6ZPW0H5Q3LOb/ol1EQqJk6ApJdFuqRaSuftlVwf7FxUsWAT5NQ== +-----END CERTIFICATE----- +-----BEGIN PRIVATE KEY----- +MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQC3P2uA0zCSLVD1 +BEw4Na7prXE3K3ov1Lo5M/ODfAN03KsR269JN6eXZW7E6U/5cEaVu6sEwp1/fY1A +y+mO1rXVaMvQmx8RS10QVZD+YahQ5Fl4Xa7SD5LqcG8LuYeiTWdgazCraNkTxpOA +I2LbGk9F7LMQsNYsGB4UozBNPDzZ9GPtzCkGeVYgcHtCcvMHphyMIGG3FNbn0sZQ +YjC2Ox1hh65IJAkYHzwGI9S8HNlq3S59RRjxsLNaUNL1O7kzAmjbOA8zlR+eBrZF +xJ24uosidhWEzOUJSfbxJAj+4NmWS6/lRNZVLYzVmJ5l1Zqaw16WaE2RH+N1eoQq +PeiMBA5c1/tTZPMF6ZjIRNMIZwMcEK648iVENdwUWIHYCY/7NMHch1xk6ypXgnln +/92BlkDlMnGvftRryp5EpfLaPd9mJk2RUn/9UY3cjo393/evnzFPFayKAC2RLVgJ +cx3sgT023KsNdkS//DTnzwc8zN9ONtgv6vxt6fxbfEwvYLE4yWOomhmJyqPyNQ9a +L8NwX4MFWtidO9GN/YkYD8ZTDxc7QKAbxwotau6qu/xAjbWQ/0fUZv6TkHRgkwV2 +Gu6/EvsTMG7SZpPL3JP/lomhd5BWKPyk4JhA9TPcIIokRsj9VGf+ZcRGqYu36C8p +l1AAtiA6zU9vkG/XB1bDkaoMWgAj9QIDAQABAoICABz4Ov3bBVj6rouJsiYJwJ0D +NTyQVEkHA6jC8Iq3GpHJSAcy+I9l68oIuF4Ld3/68sG9sT/3p3AOEHxvsD0LbyQt +pNkWCO+SP0RzjpBUrogZTZa0ksx1N1f2Tevn2Qw82ey5jXBvyy+v60Ys8fYq/uDS +Vo27MyS17F19Xge7z+/yDbE8nzi9inLm7WmYJBkvtuAlR2Vq9z2figgPud05U8AF +M/WGMuTcHUBoPju+ANY+4Nhfid29vmD3GZ644iKxDRQpFOgl+WFhdMPrXTbk0NWy +Ht1HiibxiUdel8h5khSLYyOnAg5lvNfQwKvfPMmePNAg7bBVfv9lzsqhzmeCRaW9 +ZvLprXsmphP5fUO3UiDlPyIYjUW6sJC5I1KIpnkXwcx2Au6RX7QBoMkw0s+Zrb6h +IY2fsQM+f56ZX3PDSWPBHCsw5oyEEvMa4nu9yC/SnYaZABJ3o0qP9Z54mf9Fvv4z +N5TojZba6xswNnytEvmHqh4wBvLTwKYhijBp2bq1zSftjTkDs5bFjkMMkrgtrUns +/hvVdLiQ5lhZZz1a7Ie9FU6ejF+n9QyL20nQk1vze7P0HJiK4HmmfiCqRNpF7iwO +52MOVpn/A85h6yb4Qq3emY1SX5s3QwpRjTlLwKNWiogDwFusygKypWbK/ANOCmIB +rSkYeewpPHcFY4dI/W4pAoIBAQC/x80HgUZHFi+dh93jgCwCnHPhv1z/VMrsk0IQ +q0WiJe1oToiRKTxFEmG84oLz0nIO9/eGFpAiSSLK4CC/hc9pbIpiGiVtnSZh4dLa +bmVtXpgquvg7XXLlXXoE7ABdJPFPSwGmE31UQuslot+DSMOI3aEgL2X4vM44kwUY +4226S1QUKo12qLB8/JgvMTmlxtggGigfu+y4N5H4yg+dRjQHQ4I/cHl1LBpzJRHs +H9amWveSnuxRx/4gihlLF2t0SrlbGir5mPEpN3m3sGuFfbHfXJXVtG4gja/Eopsy +iW6bEt0hFQZYNJmeS+5pkPLN2X5sw/5GHbRgDmvmIYQwrXRtAoIBAQD0nCh807EQ +3AOJA3G1pJkPFwL1LCI0r8L+1HIutWky4/qj5YcytGhXVUaZqIZ6BjibXQm4ZaAF +4f/8kH6Ou/PwVJm5pMv75WpUSme8jg/rAwunxnKM6NJs9o2SZNmcFF56YsRlUkq6 +uYsqwxsyTw0GzXlvJaPJgUeYCJrFkTsX5QXwO4gIVVt/uXIkTjjEPK8KrCcUBzMX +jEMtyHlUgKc3QqaRK0M+TkD43nRhf6y/yJLISjb5wrOzzGi+FmggkjgRLSVZAuz+ +l3yIAMDj/cv7Nt0aH+Trrv+abCNcQ2KXA/Xw3q5o27xusE1PvOKap9obOHIYnOAn +BFaDKhQtumipAoIBAHQdhQYGP4bK6Al5Od+EuyDZmVAVjTkLHdIfVuDA0mhajmOZ +KRa64MLxXjv+6Uq3IFfvyu5kuuAHaAltqmZLnkk2bpL3QbIcdCDPmdqm/MI7g+Zb +TfCjo+07q6VPPukmdPSNdXIYWsmpurYO50WVyM4VYnkaOaNgrXuTiIKJMOaatU2A +diZh/HmwdnQcWcsFmdXWAHU2Ux02iCsaLFoNJ3M+bJ38e412Jo2Q5EkS/eO7MCqW +Dn91l2gcNTRB+c1vcMq4DU0STPGnpQqSxocMk6WpaQ77L7KGFuX3jgALNeyufzSI +hk7hiiFN2AwStu/rv6AbCtlpIs0F7k5n/KF8ZAECggEBAIVOZTJCHAlYHgUZf2rC +nTeADviWaL3V26sNFH0oGIDHhdy0Rg34C7UsoCE1mrP9l/PzrEx19dO+6sc16ALZ +o4OiV3S4vwI0cNInConT0hD9w+hXWi445BTF+TmDBKTu5N5F3UpqopdIbvOLCNNO +CYdfi4JrPOugLOhKKC7riwzmn2ngx63i9s6QvgfTKVSozaw/Tby4f7uhkSruSlEn +G/odtLEAptDZzMbUVRCdiAOsx3GoIHXVCiI+kAaoJ284wJ17wRLVaVsGK7Pi1Txr +IDN0HuMR5qwa3unFbS/m+V/bpLj0YpB60CJyqm9+PPCT8WVMScHoHLCmyI8K65xQ +LqECggEAXL9cy8+xSo5JR3GbLVLcveDo8u0OCYv65DEFNdk4QEpV81xiePXqNjCI +kLJM5wZmKawTWb2ZejTKs67YDmlgkBMklZ2iPieImWCiARTR0IPC+3ofQjg49pM3 +cngPclsvkKKxgRI4Oy5RhDgd7OqCc95h1IeIhc4Z6GDDfu2F7b8RvDLJXFbN4SVq +pRd6K7TSAlvv0pXssuKUCpDehewmSMPJs+ExGnh2nyN78tRliAW3fHwGHxKZw8l6 +D46/JMILRoZeVbnOOy8zuqllI0TPKNToCROwRuv5luVCEKOz9fXqVEINNiXSOZMs +XehyY9TF5cm3yXc3RCWbauWT6qiLwg== +-----END PRIVATE KEY----- diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/Create_DBUser/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/Create_DBUser/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index e7b0772726..b97ffac470 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserCerts/Create_DBUser/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUserCerts/Create_DBUser/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 387 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:23 GMT +Date: Thu, 24 Jul 2025 15:06:34 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 219 +X-Envoy-Upstream-Service-Time: 230 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"awsIAMType":"NONE","databaseName":"$external","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/$external/user625","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user625","x509Type":"MANAGED"} \ No newline at end of file +{"awsIAMType":"NONE","databaseName":"$external","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/$external/user969","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user969","x509Type":"MANAGED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user625_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user625_1.snaphost deleted file mode 100644 index 8fa3b46438..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user625_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 161 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user969_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user969_1.snaphost new file mode 100644 index 0000000000..bf97491497 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserCerts/Delete_User/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_$external_user969_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:36 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 179 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost deleted file mode 100644 index ec1f85caa3..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user625_certs_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 516 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 72 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::getValidCertsByUsername -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/user625/certs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":6878982759773764143,"createdAt":"2025-06-03T11:55:54Z","groupId":"b0123456789abcdef012345b","notAfter":"2025-09-03T12:55:54Z","subject":"CN=user625"},{"_id":4588533210248421443,"createdAt":"2025-07-22T04:13:24Z","groupId":"b0123456789abcdef012345b","notAfter":"2025-10-22T05:13:24Z","subject":"CN=user625"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost new file mode 100644 index 0000000000..9425a22d12 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserCerts/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_user969_certs_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 359 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 69 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::getValidCertsByUsername +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/user969/certs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":2463650133886136137,"createdAt":"2025-07-24T14:06:35Z","groupId":"b0123456789abcdef012345b","notAfter":"2025-10-24T15:06:35Z","subject":"CN=user969"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserCerts/memory.json b/test/e2e/testdata/.snapshots/TestDBUserCerts/memory.json index 254e6dde7c..9554be7ffa 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserCerts/memory.json +++ b/test/e2e/testdata/.snapshots/TestDBUserCerts/memory.json @@ -1 +1 @@ -{"TestDBUserCerts/rand":"AnE="} \ No newline at end of file +{"TestDBUserCerts/rand":"A8k="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index f1aa3805e8..d853a9ea92 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 492 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:14 GMT +Date: Thu, 24 Jul 2025 15:06:25 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 793 +X-Envoy-Upstream-Service-Time: 756 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"} \ No newline at end of file +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost deleted file mode 100644 index 238a1f06a9..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 164 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost new file mode 100644 index 0000000000..4585f1e9cd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 191 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost deleted file mode 100644 index f07a662244..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 492 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost new file mode 100644 index 0000000000..7a0240bf07 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 492 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index 1cd4243ce0..9726173baa 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 11347 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:15 GMT +Date: Thu, 24 Jul 2025 15:06:26 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 80 +X-Envoy-Upstream-Service-Time: 86 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48141","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48141","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48577","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48577","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster49824","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster49824","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster55696","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster55696","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster57377","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster57377","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster81982","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster81982","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster96702","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster96702","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster97142","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster97142","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71232","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71232","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71480","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71480","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72119","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72119","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72946","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72946","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster73662","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster73662","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster15985","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster15985","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16385","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16385","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16526","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16526","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17011","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17011","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17025","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17025","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster74886","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster74886","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user0","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user0","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/test","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"test","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28286","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28286","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28902","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28902","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-300","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-300","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster03257","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster03257","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/myAtlasDBUser","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"myAtlasDBUser","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-199","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-199","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"}],"totalCount":28} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48141","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48141","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48577","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48577","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster49824","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster49824","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster55696","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster55696","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster57377","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster57377","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster81982","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster81982","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster96702","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster96702","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster97142","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster97142","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71232","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71232","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71480","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71480","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72119","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72119","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72946","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72946","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster73662","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster73662","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster15985","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster15985","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16385","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16385","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16526","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16526","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17011","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17011","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17025","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17025","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster74886","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster74886","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user0","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user0","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/test","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"test","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28286","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28286","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28902","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28902","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-300","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-300","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster03257","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster03257","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/myAtlasDBUser","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"myAtlasDBUser","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-199","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-199","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"}],"totalCount":28} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index 72b5ec82e5..0c4e8bede3 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/List_Compact/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 11347 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:15 GMT +Date: Thu, 24 Jul 2025 15:06:26 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 90 +X-Envoy-Upstream-Service-Time: 87 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUsers X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48141","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48141","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48577","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48577","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster49824","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster49824","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster55696","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster55696","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster57377","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster57377","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster81982","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster81982","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster96702","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster96702","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster97142","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster97142","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71232","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71232","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71480","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71480","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72119","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72119","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72946","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72946","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster73662","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster73662","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster15985","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster15985","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16385","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16385","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16526","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16526","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17011","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17011","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17025","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17025","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster74886","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster74886","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user0","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user0","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/test","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"test","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28286","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28286","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28902","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28902","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-300","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-300","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster03257","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster03257","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/myAtlasDBUser","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"myAtlasDBUser","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-199","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-199","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"}],"totalCount":28} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48141","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48141","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster48577","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster48577","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster49824","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster49824","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster55696","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster55696","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster57377","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster57377","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster81982","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster81982","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster96702","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster96702","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster97142","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster97142","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71232","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71232","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster71480","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster71480","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72119","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72119","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster72946","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster72946","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster73662","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster73662","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster15985","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster15985","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16385","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16385","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster16526","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster16526","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17011","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17011","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster17025","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster17025","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster74886","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster74886","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user0","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"user0","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/test","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"test","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28286","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28286","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster28902","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster28902","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-300","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-300","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/Cluster03257","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"Cluster03257","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/myAtlasDBUser","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"myAtlasDBUser","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-199","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-199","x509Type":"NONE"},{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"}],"totalCount":28} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost deleted file mode 100644 index e94439c465..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 454 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 804 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost new file mode 100644 index 0000000000..69270853b0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 454 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 759 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost deleted file mode 100644 index 3cfedfea2c..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-403_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 454 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 782 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:13Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-403","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-403","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost new file mode 100644 index 0000000000..5ac233f435 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/Update_only_password/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-441_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 454 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 769 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:25Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-441","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-441","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/memory.json b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/memory.json index e4ecec16d1..f81f3060a3 100644 --- a/test/e2e/testdata/.snapshots/TestDBUserWithFlags/memory.json +++ b/test/e2e/testdata/.snapshots/TestDBUserWithFlags/memory.json @@ -1 +1 @@ -{"TestDBUserWithFlags/username":"user-403"} \ No newline at end of file +{"TestDBUserWithFlags/username":"user-441"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index e6b7dc9552..60be19c364 100644 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 492 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:18 GMT +Date: Thu, 24 Jul 2025 15:06:29 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 725 +X-Envoy-Upstream-Service-Time: 772 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:18Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-537","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-537","x509Type":"NONE"} \ No newline at end of file +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:29Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-884","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-884","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create_OIDC_user/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create_OIDC_user/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index e16d81e878..d5fae1e9ea 100644 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create_OIDC_user/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Create_OIDC_user/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 508 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:19 GMT +Date: Thu, 24 Jul 2025 15:06:30 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 191 +X-Envoy-Upstream-Service-Time: 199 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-537","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-537","x509Type":"NONE"} \ No newline at end of file +{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-884","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-884","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost deleted file mode 100644 index a1319497ba..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 159 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost new file mode 100644 index 0000000000..27ef9421cc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:31 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 185 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost deleted file mode 100644 index 1b46e198e2..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 160 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost new file mode 100644 index 0000000000..e23763cc15 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:31 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 190 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::deleteUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost deleted file mode 100644 index fc33bd6c19..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-537_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 508 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-537","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-537","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost new file mode 100644 index 0000000000..3f130ba31a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_d0123456789abcdef012345d_user-884_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 508 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 71 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/d0123456789abcdef012345d%2Fuser-884","rel":"self"}],"oidcAuthType":"IDP_GROUP","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"d0123456789abcdef012345d/user-884","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost deleted file mode 100644 index 42523d6feb..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 492 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:18Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-537","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-537","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost new file mode 100644 index 0000000000..8cb5e91a19 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 492 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:29Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-884","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"},{"name":"Cluster1","type":"CLUSTER"}],"username":"user-884","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost deleted file mode 100644 index 23a18460cb..0000000000 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-537_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 454 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 202 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-23T05:13:18Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-537","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-537","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost new file mode 100644 index 0000000000..dde02c4c2d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_admin_user-884_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 454 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:31 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 212 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::patchUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","deleteAfterDate":"2025-07-25T15:06:29Z","groupId":"b0123456789abcdef012345b","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/databaseUsers/admin/user-884","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"readWrite"}],"scopes":[{"name":"Cluster0","type":"CLUSTER"}],"username":"user-884","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/memory.json b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/memory.json index e8360c8547..e5e994c66d 100644 --- a/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/memory.json +++ b/test/e2e/testdata/.snapshots/TestDBUsersWithStdin/memory.json @@ -1 +1 @@ -{"TestDBUsersWithStdin/username":"user-537"} \ No newline at end of file +{"TestDBUsersWithStdin/username":"user-884"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost index 6d7f61b077..4a402aae4d 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederation/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDataFederation/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 511 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT +Date: Thu, 24 Jul 2025 15:05:03 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 683 +X-Envoy-Upstream-Service-Time: 717 X-Frame-Options: DENY X-Java-Method: ApiAtlasDataFederationResource::createTenant X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-593-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-593","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file +{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-843-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-843","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost deleted file mode 100644 index 6413d60fe7..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 273 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::deleteTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Data Federation tenant for project b0123456789abcdef012345b and name e2e-data-federation-593 not found.","error":404,"errorCode":"DATA_FEDERATION_TENANT_NOT_FOUND_FOR_NAME","parameters":["b0123456789abcdef012345b","e2e-data-federation-593"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost new file mode 100644 index 0000000000..82c32bad3f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 273 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 67 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::deleteTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Data Federation tenant for project b0123456789abcdef012345b and name e2e-data-federation-843 not found.","error":404,"errorCode":"DATA_FEDERATION_TENANT_NOT_FOUND_FOR_NAME","parameters":["b0123456789abcdef012345b","e2e-data-federation-843"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost deleted file mode 100644 index 0531f5b25f..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 274 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::deleteTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost new file mode 100644 index 0000000000..9976a09cd8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederation/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 254 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::deleteTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost deleted file mode 100644 index 055a8a8825..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 511 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::getTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-593-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-593","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost new file mode 100644 index 0000000000..e0ed470894 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederation/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 511 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::getTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-843-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-843","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost deleted file mode 100644 index d21fdb4221..0000000000 Binary files a/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost and /dev/null differ diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost new file mode 100644 index 0000000000..6aad6e0d18 Binary files /dev/null and b/test/e2e/testdata/.snapshots/TestDataFederation/Download_Logs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost differ diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost index dedcf1fdca..773050a002 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederation/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDataFederation/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 513 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT +Date: Thu, 24 Jul 2025 15:05:04 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 143 +X-Envoy-Upstream-Service-Time: 148 X-Frame-Options: DENY X-Java-Method: ApiAtlasDataFederationResource::getTenants X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -[{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-593-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-593","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}}] \ No newline at end of file +[{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-843-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-843","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost deleted file mode 100644 index 5d8418a141..0000000000 Binary files a/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_queryLogs.gz_1.snaphost and /dev/null differ diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost new file mode 100644 index 0000000000..43cfeb4157 Binary files /dev/null and b/test/e2e/testdata/.snapshots/TestDataFederation/Log/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_queryLogs.gz_1.snaphost differ diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost deleted file mode 100644 index 9a5c0341e7..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-593_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 567 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 185 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::updateTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-593-g1nxq.virginia-usa.a.query.mongodb-dev.net"],"name":"e2e-data-federation-593","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost new file mode 100644 index 0000000000..ba11057d99 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederation/Update/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-843_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 567 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 192 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::updateTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-843-g1nxq.virginia-usa.a.query.mongodb-dev.net"],"name":"e2e-data-federation-843","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederation/memory.json b/test/e2e/testdata/.snapshots/TestDataFederation/memory.json index ce7760e6fc..d8aa3bfa53 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederation/memory.json +++ b/test/e2e/testdata/.snapshots/TestDataFederation/memory.json @@ -1 +1 @@ -{"TestDataFederation/rand":"AlE="} \ No newline at end of file +{"TestDataFederation/rand":"A0s="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost deleted file mode 100644 index 5e6183418a..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 301 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 134 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::addEndpointId -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/privateNetworkSettings/endpointIds?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe7897","provider":"AWS","status":"OK","type":"DATA_LAKE"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost new file mode 100644 index 0000000000..e9d4f31497 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 301 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::addEndpointId +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/privateNetworkSettings/endpointIds?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe6614","provider":"AWS","status":"OK","type":"DATA_LAKE"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost deleted file mode 100644 index eb0cebe16a..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::deleteEndpointIds -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost new file mode 100644 index 0000000000..b961d53888 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::deleteEndpointIds +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost deleted file mode 100644 index 73b2760f58..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe7897_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 109 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::getEndpointIdEntry -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe7897","provider":"AWS","status":"OK","type":"DATA_LAKE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost new file mode 100644 index 0000000000..eaec6ada35 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_vpce-0fcd9d80bbafe6614_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 109 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 83 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::getEndpointIdEntry +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe6614","provider":"AWS","status":"OK","type":"DATA_LAKE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost deleted file mode 100644 index 6e9d8c91d8..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1d7544f1ab3f842310d1_privateNetworkSettings_endpointIds_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 319 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 73 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::getEndpointIds -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/privateNetworkSettings/endpointIds?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe7897","provider":"AWS","status":"OK","type":"DATA_LAKE"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost new file mode 100644 index 0000000000..5473bd84a1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b9cb448981053345bce_privateNetworkSettings_endpointIds_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 319 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 70 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateNetworkSettingsResource::getEndpointIds +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/privateNetworkSettings/endpointIds?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"comment":"comment","endpointId":"vpce-0fcd9d80bbafe6614","provider":"AWS","status":"OK","type":"DATA_LAKE"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost index e57c640259..aecf04221e 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1095 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:17 GMT +Date: Thu, 24 Jul 2025 15:05:00 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2195 +X-Envoy-Upstream-Service-Time: 3223 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:20Z","id":"687f1d7544f1ab3f842310d1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7544f1ab3f842310d1/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"dataFederationPrivateEndpointsAWS-e2e-152","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:03Z","id":"68824b9cb448981053345bce","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345bce/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"dataFederationPrivateEndpointsAWS-e2e-786","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/memory.json b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/memory.json index 4da94b36ca..b8a29f5770 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/memory.json +++ b/test/e2e/testdata/.snapshots/TestDataFederationPrivateEndpointsAWS/memory.json @@ -1 +1 @@ -{"TestDataFederationPrivateEndpointsAWS/rand":"GvE="} \ No newline at end of file +{"TestDataFederationPrivateEndpointsAWS/rand":"Fe4="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost new file mode 100644 index 0000000000..317b0801f7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 150 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::setTenantBytesProcessedLimit +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"currentUsage":0,"lastModifiedDate":"2025-07-24T15:05:27Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-896","value":118000000000} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost deleted file mode 100644 index e641a4536e..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 150 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::setTenantBytesProcessedLimit -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"currentUsage":0,"lastModifiedDate":"2025-07-22T05:11:34Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-918","value":118000000000} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create_Data_Federation/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create_Data_Federation/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost index 025a42d853..4b5480117f 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create_Data_Federation/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Create_Data_Federation/POST_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 511 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:32 GMT +Date: Thu, 24 Jul 2025 15:05:26 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1031 +X-Envoy-Upstream-Service-Time: 605 X-Frame-Options: DENY X-Java-Method: ApiAtlasDataFederationResource::createTenant X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-918-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-918","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file +{"cloudProviderConfig":{"aws":{"externalId":"c6956c40-f7f3-404e-8123-a122deb6162f","iamAssumedRoleARN":"arn:aws:iam::358363220050:role/mongodb-atlas-apix-atlascli-test","iamUserARN":"arn:aws:iam::299602853325:root","roleId":"c0123456789abcdef012345c"}},"dataProcessRegion":null,"groupId":"b0123456789abcdef012345b","hostnames":["e2e-data-federation-896-g1nxq.a.query.mongodb-dev.net"],"name":"e2e-data-federation-896","privateEndpointHostnames":[],"state":"ACTIVE","storage":{"stores": null, "databases": null}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost new file mode 100644 index 0000000000..c22cae541e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::deleteTenantBytesProcessedLimit +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost deleted file mode 100644 index de1d1586db..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::deleteTenantBytesProcessedLimit -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_1.snaphost new file mode 100644 index 0000000000..d8f274bfdb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:28 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 235 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::deleteTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_1.snaphost deleted file mode 100644 index e04b174ff6..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Delete_Data_Federation/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 252 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::deleteTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost new file mode 100644 index 0000000000..1d24871e3e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_bytesProcessed.query_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 150 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 83 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::getTenantUsageLimit +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"currentUsage":0,"lastModifiedDate":"2025-07-24T15:05:27Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-896","value":118000000000} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost deleted file mode 100644 index 8913de048b..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_bytesProcessed.query_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 150 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::getTenantUsageLimit -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"currentUsage":0,"lastModifiedDate":"2025-07-22T05:11:34Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-918","value":118000000000} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_1.snaphost new file mode 100644 index 0000000000..9c66503e62 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-896_limits_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 332 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:27 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 77 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDataFederationResource::getTenantUsageLimits +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"currentUsage":0,"lastModifiedDate":"2025-07-24T15:05:27Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-896","value":118000000000},{"currentUsage":0,"lastModifiedDate":"2025-07-24T15:05:26Z","name":"bytesProcessed.monthly","overrunPolicy":"BLOCK","tenantName":"e2e-data-federation-896","value":109951162777600}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_1.snaphost b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_1.snaphost deleted file mode 100644 index 0d97ce3b37..0000000000 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_dataFederation_e2e-data-federation-918_limits_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 332 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 129 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDataFederationResource::getTenantUsageLimits -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"currentUsage":0,"lastModifiedDate":"2025-07-22T05:11:34Z","name":"bytesProcessed.query","tenantName":"e2e-data-federation-918","value":118000000000},{"currentUsage":0,"lastModifiedDate":"2025-07-22T05:11:33Z","name":"bytesProcessed.monthly","overrunPolicy":"BLOCK","tenantName":"e2e-data-federation-918","value":109951162777600}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/memory.json b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/memory.json index c158d3300d..e144aa77f4 100644 --- a/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/memory.json +++ b/test/e2e/testdata/.snapshots/TestDataFederationQueryLimit/memory.json @@ -1 +1 @@ -{"TestDataFederationQueryLimit/rand":"A5Y="} \ No newline at end of file +{"TestDataFederationQueryLimit/rand":"A4A="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestEvents/List_Organization_Events/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_events_1.snaphost b/test/e2e/testdata/.snapshots/TestEvents/List_Organization_Events/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_events_1.snaphost index 35bc803f09..0dff5b7653 100644 --- a/test/e2e/testdata/.snapshots/TestEvents/List_Organization_Events/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_events_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestEvents/List_Organization_Events/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_events_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 200 OK Connection: close -Content-Length: 41940 +Content-Length: 41911 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:27 GMT +Date: Thu, 24 Jul 2025 15:06:37 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2727 +X-Envoy-Upstream-Service-Time: 2506 X-Frame-Options: DENY X-Java-Method: ApiOrgEventsResource::getAllEvents X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events?includeCount=false&includeRaw=false&minDate=2025-07-21T05%3A13%3A27Z&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:11Z","eventTypeName":"GROUP_CREATED","groupId":"687f1de644f1ab3f84231c10","id":"687f1de744f1ab3f84231c6b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1de744f1ab3f84231c6b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:05Z","eventTypeName":"GROUP_CREATED","groupId":"687f1de1a799aa2ae9e80cd7","id":"687f1de1a799aa2ae9e80d32","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1de1a799aa2ae9e80d32","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:53Z","eventTypeName":"GROUP_CREATED","groupId":"687f1dd544f1ab3f84231adb","id":"687f1dd544f1ab3f84231b36","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1dd544f1ab3f84231b36","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:48Z","eventTypeName":"GROUP_CREATED","groupId":"687f1dd0a799aa2ae9e80b99","id":"687f1dd0a799aa2ae9e80bfc","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1dd0a799aa2ae9e80bfc","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:22Z","eventTypeName":"IDENTITY_PROVIDER_DELETED","id":"687f1db644f1ab3f84231a58","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db644f1ab3f84231a58","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:22Z","eventTypeName":"IDENTITY_PROVIDER_JWKS_REVOKED","id":"687f1db6a799aa2ae9e80b00","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db6a799aa2ae9e80b00","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:21Z","eventTypeName":"IDENTITY_PROVIDER_DELETED","id":"687f1db5a799aa2ae9e80afe","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db5a799aa2ae9e80afe","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:21Z","eventTypeName":"IDENTITY_PROVIDER_JWKS_REVOKED","id":"687f1db5a799aa2ae9e80af5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db5a799aa2ae9e80af5","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:19Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1db344f1ab3f84231a55","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db344f1ab3f84231a55","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:19Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1db3a799aa2ae9e80ae9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db3a799aa2ae9e80ae9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:18Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1db244f1ab3f84231a4a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db244f1ab3f84231a4a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:18Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1db244f1ab3f84231a47","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db244f1ab3f84231a47","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:17Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1db144f1ab3f84231a3c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db144f1ab3f84231a3c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:16Z","eventTypeName":"IDENTITY_PROVIDER_CREATED","id":"687f1db044f1ab3f84231a3a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1db044f1ab3f84231a3a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:15Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"687f1dafa799aa2ae9e80ad3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1dafa799aa2ae9e80ad3","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:15Z","eventTypeName":"IDENTITY_PROVIDER_CREATED","id":"687f1daf44f1ab3f84231a37","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1daf44f1ab3f84231a37","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:14Z","eventTypeName":"GROUP_CREATED","groupId":"687f1dae44f1ab3f842319cd","id":"687f1dae44f1ab3f84231a28","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1dae44f1ab3f84231a28","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.172.157.2"},{"apiKeyId":"687f1dad44f1ab3f842319c3","created":"2025-07-22T05:12:13Z","eventTypeName":"INVITED_TO_ORG","id":"687f1dad44f1ab3f842319c8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1dad44f1ab3f842319c8","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"cli-test-9671@moongodb.com","remoteAddress":"64.236.193.18","targetUsername":"cli-test-9671@moongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:09Z","eventTypeName":"TEAM_DELETED","id":"687f1da9a799aa2ae9e80aaa","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da9a799aa2ae9e80aaa","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1da644f1ab3f8423192b"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:09Z","eventTypeName":"REMOVED_FROM_TEAM","id":"687f1da9a799aa2ae9e80aa9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da9a799aa2ae9e80aa9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:09Z","eventTypeName":"REMOVED_FROM_TEAM","id":"687f1da9a799aa2ae9e80aa8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da9a799aa2ae9e80aa8","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"bianca.vianadeaguiar@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:08Z","eventTypeName":"GROUP_CREATED","groupId":"687f1da844f1ab3f8423193b","id":"687f1da844f1ab3f84231996","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da844f1ab3f84231996","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:07Z","eventTypeName":"JOINED_TEAM","id":"687f1da744f1ab3f84231936","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da744f1ab3f84231936","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"bianca.vianadeaguiar@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:06Z","eventTypeName":"TEAM_CREATED","id":"687f1da644f1ab3f8423192d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da644f1ab3f8423192d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1da644f1ab3f8423192b"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:06Z","eventTypeName":"JOINED_TEAM","id":"687f1da644f1ab3f8423192c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da644f1ab3f8423192c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:05Z","eventTypeName":"TEAM_DELETED","id":"687f1da544f1ab3f84231922","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da544f1ab3f84231922","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1da3a799aa2ae9e80a75"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:05Z","eventTypeName":"REMOVED_FROM_TEAM","id":"687f1da544f1ab3f84231921","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da544f1ab3f84231921","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:04Z","eventTypeName":"TEAM_NAME_CHANGED","id":"687f1da4a799aa2ae9e80a8b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da4a799aa2ae9e80a8b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1da3a799aa2ae9e80a75"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:03Z","eventTypeName":"TEAM_CREATED","id":"687f1da3a799aa2ae9e80a77","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da3a799aa2ae9e80a77","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1da3a799aa2ae9e80a75"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:03Z","eventTypeName":"JOINED_TEAM","id":"687f1da3a799aa2ae9e80a76","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da3a799aa2ae9e80a76","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:01Z","eventTypeName":"TEAM_DELETED","id":"687f1da144f1ab3f84231916","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da144f1ab3f84231916","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1d9f44f1ab3f84231882"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:01Z","eventTypeName":"REMOVED_FROM_TEAM","id":"687f1da144f1ab3f84231915","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da144f1ab3f84231915","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:01Z","eventTypeName":"TEAM_REMOVED_FROM_GROUP","groupId":"687f1d9c44f1ab3f84231819","id":"687f1da144f1ab3f84231914","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da144f1ab3f84231914","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1d9f44f1ab3f84231882"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:00Z","eventTypeName":"TEAM_ROLES_MODIFIED","groupId":"687f1d9c44f1ab3f84231819","id":"687f1da0a799aa2ae9e80a64","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da0a799aa2ae9e80a64","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1d9f44f1ab3f84231882"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:00Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d9f44f1ab3f84231885","id":"687f1da044f1ab3f842318e0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1da044f1ab3f842318e0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:59Z","eventTypeName":"TEAM_ADDED_TO_GROUP","groupId":"687f1d9c44f1ab3f84231819","id":"687f1d9fa799aa2ae9e80a5f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9fa799aa2ae9e80a5f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1d9f44f1ab3f84231882"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:59Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1d9fa799aa2ae9e80a5d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9fa799aa2ae9e80a5d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.60.147"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:59Z","eventTypeName":"TEAM_CREATED","id":"687f1d9f44f1ab3f84231884","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9f44f1ab3f84231884","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","teamId":"687f1d9f44f1ab3f84231882"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:59Z","eventTypeName":"JOINED_TEAM","id":"687f1d9f44f1ab3f84231883","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9f44f1ab3f84231883","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:57Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d9c44f1ab3f84231819","id":"687f1d9d44f1ab3f84231874","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9d44f1ab3f84231874","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:55Z","eventTypeName":"GROUP_DELETED","groupId":"687f1d94a799aa2ae9e807fc","id":"687f1d9b44f1ab3f84231810","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9b44f1ab3f84231810","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:55Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d9ba799aa2ae9e80955","id":"687f1d9ba799aa2ae9e809b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9ba799aa2ae9e809b0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.216.65"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:54Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"687f1d94a799aa2ae9e807fc","id":"687f1d9ad07e4d01e4eb60b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9ad07e4d01e4eb60b0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","resourceId":"687f1d94a799aa2ae9e807fc","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:53Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d99b414d36bfbc6d4f0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d99b414d36bfbc6d4f0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:53Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"687f1d94a799aa2ae9e807fc","id":"687f1d9923468e74003b21d0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9923468e74003b21d0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","resourceId":"687f1d94a799aa2ae9e807fc","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:51Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d97a799aa2ae9e808d1","id":"687f1d97a799aa2ae9e8092d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d97a799aa2ae9e8092d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:51Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d97b3d69636e2ef5595","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d97b3d69636e2ef5595","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:50Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"687f1d94a799aa2ae9e807fc","id":"687f1d9628cce412185142b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9628cce412185142b0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","resourceId":"687f1d94a799aa2ae9e807fc","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:49Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d94a799aa2ae9e80858","id":"687f1d95a799aa2ae9e808b8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d95a799aa2ae9e808b8","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.172.6.65"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:49Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d9444f1ab3f8423173d","id":"687f1d9544f1ab3f8423179c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9544f1ab3f8423179c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:48Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d94a799aa2ae9e807fc","id":"687f1d94a799aa2ae9e80857","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d94a799aa2ae9e80857","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:45Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d91a799aa2ae9e8077d","id":"687f1d91a799aa2ae9e807de","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d91a799aa2ae9e807de","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.59.209"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:45Z","eventTypeName":"INVITED_TO_ORG","id":"687f1d9144f1ab3f84231718","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d9144f1ab3f84231718","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"test-993@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:43Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d8e44f1ab3f84231649","id":"687f1d8f44f1ab3f842316fd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8f44f1ab3f842316fd","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.232.35"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:43Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d8e44f1ab3f8423162b","id":"687f1d8f44f1ab3f842316c1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8f44f1ab3f842316c1","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:43Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d8fd07e4d01e4eb60af","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8fd07e4d01e4eb60af","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.224.163"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:42Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d8db832c82280789d67","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8db832c82280789d67","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:42Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d8ed07e4d01e4eb60ac","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8ed07e4d01e4eb60ac","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.55.223.211"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:41Z","eventTypeName":"API_KEY_DELETED","id":"687f1d8da799aa2ae9e8075a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8da799aa2ae9e8075a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"krgngpce"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:41Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d8da799aa2ae9e806ec","id":"687f1d8da799aa2ae9e80758","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8da799aa2ae9e80758","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"API_KEY_CREATED","id":"687f1d8b44f1ab3f8423153c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8b44f1ab3f8423153c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"krgngpce"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d8aa799aa2ae9e8067f","id":"687f1d8ba799aa2ae9e806da","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8ba799aa2ae9e806da","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.55.223.211"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:37Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d898bc3ab78be31b746","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d898bc3ab78be31b746","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.173.219.145"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"INVITED_TO_ORG","id":"687f1d85a799aa2ae9e8063d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d85a799aa2ae9e8063d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"test-file-732@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d8444f1ab3f84231469","id":"687f1d8544f1ab3f842314d2","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8544f1ab3f842314d2","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.135.128"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d85840a75742df5e87b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d85840a75742df5e87b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.224.163"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:32Z","eventTypeName":"INVITED_TO_ORG","id":"687f1d8444f1ab3f84231475","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8444f1ab3f84231475","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"test-file-602@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:32Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d84a799aa2ae9e80614","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d84a799aa2ae9e80614","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.173.219.145"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:32Z","eventTypeName":"INVITED_TO_ORG","id":"687f1d8444f1ab3f8423145c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8444f1ab3f8423145c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetUsername":"test-228@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:30Z","eventTypeName":"API_KEY_DELETED","id":"687f1d8244f1ab3f8423144c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8244f1ab3f8423144c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"hcfsbyvu"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:30Z","eventTypeName":"API_KEY_DESCRIPTION_CHANGED","id":"687f1d82a799aa2ae9e805b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d82a799aa2ae9e805b0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"hcfsbyvu"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:29Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d81a799aa2ae9e805aa","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d81a799aa2ae9e805aa","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.224.163"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:29Z","eventTypeName":"API_KEY_CREATED","id":"687f1d8144f1ab3f8423142c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8144f1ab3f8423142c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"hcfsbyvu"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:28Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7f44f1ab3f8423133f","id":"687f1d8044f1ab3f842313fc","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8044f1ab3f842313fc","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.173.219.145"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:28Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7f44f1ab3f8423133e","id":"687f1d8044f1ab3f842313f9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d8044f1ab3f842313f9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.201.33"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"API_KEY_DELETED","id":"687f1d7fa799aa2ae9e80546","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7fa799aa2ae9e80546","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_DELETED","id":"687f1d7fa799aa2ae9e80541","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7fa799aa2ae9e80541","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy","whitelistEntry":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7fa799aa2ae9e804de","id":"687f1d7fa799aa2ae9e8053f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7fa799aa2ae9e8053f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.232.177.177"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_ADDED","id":"687f1d7f44f1ab3f8423133d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7f44f1ab3f8423133d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy","whitelistEntry":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:26Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_DELETED","id":"687f1d7e44f1ab3f8423133b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7e44f1ab3f8423133b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy","whitelistEntry":"192.168.0.92"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:26Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7d44f1ab3f842312d4","id":"687f1d7e44f1ab3f84231335","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7e44f1ab3f84231335","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.184.214.227"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:25Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_ADDED","id":"687f1d7da799aa2ae9e804c5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7da799aa2ae9e804c5","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy","whitelistEntry":"192.168.0.92"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:25Z","eventTypeName":"API_KEY_CREATED","id":"687f1d7da799aa2ae9e804b4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7da799aa2ae9e804b4","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"ihedyomy"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:25Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d7cd07e4d01e4eb60a8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7cd07e4d01e4eb60a8","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.154.20.50"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:24Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7b44f1ab3f84231249","id":"687f1d7c44f1ab3f842312bc","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7c44f1ab3f842312bc","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.171.126.212"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:23Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7a44f1ab3f842311cb","id":"687f1d7b44f1ab3f8423123b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7b44f1ab3f8423123b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.173.219.147"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:22Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d79a799aa2ae9e803dd","id":"687f1d7aa799aa2ae9e80442","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7aa799aa2ae9e80442","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.154.20.50"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:21Z","eventTypeName":"TAGS_MODIFIED","id":"687f1d7923468e74003b21cd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7923468e74003b21cd","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.55.213.114"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:20Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d78a799aa2ae9e80368","id":"687f1d78a799aa2ae9e803cb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d78a799aa2ae9e803cb","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.42.42.212"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:18Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7544f1ab3f842310d1","id":"687f1d7644f1ab3f84231136","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7644f1ab3f84231136","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.184.210.48"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:18Z","eventTypeName":"API_KEY_DELETED","id":"687f1d7644f1ab3f84231100","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7644f1ab3f84231100","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.182.226.130","targetPublicKey":"fjdyuiac"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:17Z","eventTypeName":"API_KEY_CREATED","id":"687f1d7544f1ab3f842310c7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7544f1ab3f842310c7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.182.226.130","targetPublicKey":"fjdyuiac"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:16Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7444f1ab3f84231064","id":"687f1d7444f1ab3f842310bf","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7444f1ab3f842310bf","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.144.97"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:13Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7044f1ab3f84230fb6","id":"687f1d7144f1ab3f8423104e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7144f1ab3f8423104e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"48.214.55.36"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:13Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d7044f1ab3f84230f92","id":"687f1d7144f1ab3f8423101e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d7144f1ab3f8423101e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.69.34"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:11Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d6f44f1ab3f84230f31","id":"687f1d6f44f1ab3f84230f8c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d6f44f1ab3f84230f8c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"145.132.100.178"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:11Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d6ea799aa2ae9e800fa","id":"687f1d6fa799aa2ae9e80156","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d6fa799aa2ae9e80156","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.200.23.66"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:10Z","eventTypeName":"GROUP_CREATED","groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d6ea799aa2ae9e800fb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687f1d6ea799aa2ae9e800fb","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.55.213.114"},{"apiKeyId":"5f3b9a38320c484ff32cbf5c","created":"2025-07-22T01:47:28Z","eventTypeName":"GROUP_DELETED","groupId":"687dcc813921c56d58edd69b","id":"687eedb00e98b2125a0c3ecb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687eedb00e98b2125a0c3ecb","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"tevdziqg","remoteAddress":"54.204.101.106"},{"apiKeyId":"5f3b9a38320c484ff32cbf5c","created":"2025-07-22T01:47:28Z","eventTypeName":"GROUP_DELETED","groupId":"687dcc7899e8c529281c6d47","id":"687eedb07536311c45c4399d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/687eedb07536311c45c4399d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"tevdziqg","remoteAddress":"54.204.101.106"}],"totalCount":0} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events?includeCount=false&includeRaw=false&minDate=2025-07-23T15%3A06%3A37Z&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:23Z","eventTypeName":"GROUP_CREATED","groupId":"68824beeb4489810533465c4","id":"68824befb44898105334661f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824befb44898105334661f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:16Z","eventTypeName":"GROUP_CREATED","groupId":"68824be8b44898105334652d","id":"68824be8b44898105334658a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824be8b44898105334658a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:03Z","eventTypeName":"GROUP_CREATED","groupId":"68824bdab448981053346468","id":"68824bdbb4489810533464cd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bdbb4489810533464cd","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:01Z","eventTypeName":"TAGS_MODIFIED","id":"68824bd92e8ec92ca955266f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd92e8ec92ca955266f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.172.87.73"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:00Z","eventTypeName":"API_KEY_DELETED","id":"68824bd842be0f23307f3ee9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd842be0f23307f3ee9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.119.235.80","targetPublicKey":"yhfmdrey"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:00Z","eventTypeName":"API_KEY_CREATED","id":"68824bd842be0f23307f3edf","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd842be0f23307f3edf","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.119.235.80","targetPublicKey":"yhfmdrey"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:58Z","eventTypeName":"GROUP_CREATED","groupId":"68824bd6b448981053346359","id":"68824bd6b4489810533463b4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd6b4489810533463b4","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:57Z","eventTypeName":"GROUP_CREATED","groupId":"68824bd5b4489810533462f2","id":"68824bd5b448981053346353","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd5b448981053346353","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:57Z","eventTypeName":"TAGS_MODIFIED","id":"68824bd523ccf74013c09e86","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd523ccf74013c09e86","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.62.207.246"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:52Z","eventTypeName":"GROUP_CREATED","groupId":"68824bd0b448981053346275","id":"68824bd0b4489810533462d0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bd0b4489810533462d0","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.172.87.73"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:49Z","eventTypeName":"GROUP_CREATED","groupId":"68824bcd42be0f23307f3e00","id":"68824bcd42be0f23307f3e7a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bcd42be0f23307f3e7a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"74.249.79.56"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:48Z","eventTypeName":"TAGS_MODIFIED","id":"68824bccf94b153da20e0369","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bccf94b153da20e0369","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.62.207.246"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:48Z","eventTypeName":"TAGS_MODIFIED","id":"68824bccb1b3757999bb5039","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bccb1b3757999bb5039","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:45Z","eventTypeName":"GROUP_CREATED","groupId":"68824bc8b4489810533461eb","id":"68824bc9b448981053346246","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc9b448981053346246","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.62.207.246"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:42Z","eventTypeName":"IDENTITY_PROVIDER_DELETED","id":"68824bc6b4489810533461e7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc6b4489810533461e7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:42Z","eventTypeName":"IDENTITY_PROVIDER_JWKS_REVOKED","id":"68824bc6b4489810533461e5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc6b4489810533461e5","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:42Z","eventTypeName":"IDENTITY_PROVIDER_DELETED","id":"68824bc642be0f23307f3d64","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc642be0f23307f3d64","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:42Z","eventTypeName":"IDENTITY_PROVIDER_JWKS_REVOKED","id":"68824bc6b4489810533461e4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc6b4489810533461e4","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:41Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc542be0f23307f3d55","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc542be0f23307f3d55","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:40Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc4b4489810533461dc","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc4b4489810533461dc","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:40Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc4b4489810533461d9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc4b4489810533461d9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:40Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc442be0f23307f3d50","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc442be0f23307f3d50","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:39Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc342be0f23307f3d49","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc342be0f23307f3d49","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:39Z","eventTypeName":"IDENTITY_PROVIDER_CREATED","id":"68824bc3b4489810533461c9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc3b4489810533461c9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:38Z","eventTypeName":"GROUP_CREATED","groupId":"68824bc2b448981053346169","id":"68824bc2b4489810533461c6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc2b4489810533461c6","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:38Z","eventTypeName":"ORG_SETTINGS_UPDATED","id":"68824bc242be0f23307f3d42","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc242be0f23307f3d42","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:38Z","eventTypeName":"IDENTITY_PROVIDER_CREATED","id":"68824bc2b448981053346167","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc2b448981053346167","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"68824bc142be0f23307f3d26","created":"2025-07-24T15:05:37Z","eventTypeName":"INVITED_TO_ORG","id":"68824bc142be0f23307f3d2b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bc142be0f23307f3d2b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"cli-test-9993@moongodb.com","remoteAddress":"4.236.159.225","targetUsername":"cli-test-9993@moongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:34Z","eventTypeName":"TEAM_DELETED","id":"68824bbeb448981053346151","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbeb448981053346151","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bbcb44898105334613c"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:34Z","eventTypeName":"REMOVED_FROM_TEAM","id":"68824bbeb448981053346150","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbeb448981053346150","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:33Z","eventTypeName":"REMOVED_FROM_TEAM","id":"68824bbd42be0f23307f3cf7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbd42be0f23307f3cf7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"bianca.vianadeaguiar@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:32Z","eventTypeName":"JOINED_TEAM","id":"68824bbcb448981053346141","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbcb448981053346141","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"bianca.vianadeaguiar@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:32Z","eventTypeName":"TEAM_CREATED","id":"68824bbcb44898105334613e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbcb44898105334613e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bbcb44898105334613c"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:32Z","eventTypeName":"JOINED_TEAM","id":"68824bbcb44898105334613d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbcb44898105334613d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:31Z","eventTypeName":"TEAM_DELETED","id":"68824bbbb44898105334613b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbbb44898105334613b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb942be0f23307f3c7d"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:31Z","eventTypeName":"REMOVED_FROM_TEAM","id":"68824bbbb44898105334613a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbbb44898105334613a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:30Z","eventTypeName":"GROUP_CREATED","groupId":"68824bba42be0f23307f3c8a","id":"68824bba42be0f23307f3ce5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bba42be0f23307f3ce5","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:30Z","eventTypeName":"TEAM_NAME_CHANGED","id":"68824bbab44898105334612f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bbab44898105334612f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb942be0f23307f3c7d"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:29Z","eventTypeName":"TEAM_CREATED","id":"68824bb942be0f23307f3c7f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb942be0f23307f3c7f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb942be0f23307f3c7d"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:29Z","eventTypeName":"JOINED_TEAM","id":"68824bb942be0f23307f3c7e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb942be0f23307f3c7e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"TEAM_DELETED","id":"68824bb8b448981053346124","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb8b448981053346124","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb6b448981053346106"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"REMOVED_FROM_TEAM","id":"68824bb8b448981053346122","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb8b448981053346122","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"TEAM_REMOVED_FROM_GROUP","groupId":"68824bb342be0f23307f3bc9","id":"68824bb842be0f23307f3c7a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb842be0f23307f3c7a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb6b448981053346106"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:27Z","eventTypeName":"TEAM_ROLES_MODIFIED","groupId":"68824bb342be0f23307f3bc9","id":"68824bb742be0f23307f3c55","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb742be0f23307f3c55","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb6b448981053346106"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:27Z","eventTypeName":"TEAM_ADDED_TO_GROUP","groupId":"68824bb342be0f23307f3bc9","id":"68824bb742be0f23307f3c4e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb742be0f23307f3c4e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb6b448981053346106"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:26Z","eventTypeName":"TEAM_CREATED","id":"68824bb6b448981053346108","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb6b448981053346108","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","teamId":"68824bb6b448981053346106"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:26Z","eventTypeName":"JOINED_TEAM","id":"68824bb6b448981053346107","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb6b448981053346107","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"andrea.angiolillo@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:24Z","eventTypeName":"GROUP_CREATED","groupId":"68824bb342be0f23307f3bc9","id":"68824bb442be0f23307f3c26","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb442be0f23307f3c26","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:23Z","eventTypeName":"GROUP_DELETED","groupId":"68824bac42be0f23307f39ff","id":"68824bb342be0f23307f3bc6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb342be0f23307f3bc6","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:23Z","eventTypeName":"TAGS_MODIFIED","id":"68824bb323ccf74013c09e82","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb323ccf74013c09e82","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.229.8"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:21Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"68824bac42be0f23307f39ff","id":"68824bb1e8be0d66dc467dd1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb1e8be0d66dc467dd1","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","resourceId":"68824bac42be0f23307f39ff","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:21Z","eventTypeName":"TAGS_MODIFIED","id":"68824bb0f94b153da20e0365","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb0f94b153da20e0365","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:20Z","eventTypeName":"GROUP_CREATED","groupId":"68824bb042be0f23307f3ae3","id":"68824bb042be0f23307f3b3e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb042be0f23307f3b3e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.229.8"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:20Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"68824bac42be0f23307f39ff","id":"68824bb0e1ec6a4233583408","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bb0e1ec6a4233583408","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","resourceId":"68824bac42be0f23307f39ff","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:19Z","eventTypeName":"GROUP_CREATED","groupId":"68824bafb448981053345f6d","id":"68824bafb448981053345fd7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bafb448981053345fd7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.226.248"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:19Z","eventTypeName":"GROUP_CREATED","groupId":"68824baeb448981053345f1a","id":"68824bafb448981053345f79","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bafb448981053345f79","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.184.220.146"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:19Z","eventTypeName":"TAGS_MODIFIED","id":"68824baf5b764b755013709b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824baf5b764b755013709b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:19Z","eventTypeName":"GROUP_TAGS_MODIFIED","groupId":"68824bac42be0f23307f39ff","id":"68824bae5b764b7550137096","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bae5b764b7550137096","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","resourceId":"68824bac42be0f23307f39ff","resourceType":"project"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:19Z","eventTypeName":"GROUP_CREATED","groupId":"68824bae42be0f23307f3a70","id":"68824baf42be0f23307f3acb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824baf42be0f23307f3acb","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.184.209.119"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:17Z","eventTypeName":"GROUP_CREATED","groupId":"68824bac42be0f23307f39ff","id":"68824bad42be0f23307f3a5e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bad42be0f23307f3a5e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:16Z","eventTypeName":"GROUP_CREATED","groupId":"68824babb448981053345e9a","id":"68824bacb448981053345f04","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824bacb448981053345f04","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.182.226.232"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:14Z","eventTypeName":"INVITED_TO_ORG","id":"68824baab448981053345e8f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824baab448981053345e8f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"test-412@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:13Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba942be0f23307f398e","id":"68824ba942be0f23307f39f1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba942be0f23307f39f1","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.238.24.38"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:13Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba8b448981053345e17","id":"68824ba9b448981053345e85","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba9b448981053345e85","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:12Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba8b448981053345dc8","id":"68824ba8b448981053345e2a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba8b448981053345e2a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:11Z","eventTypeName":"API_KEY_DELETED","id":"68824ba7b448981053345dc3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba7b448981053345dc3","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"iipllbbf"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:10Z","eventTypeName":"API_KEY_CREATED","id":"68824ba642be0f23307f38e9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba642be0f23307f38e9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"iipllbbf"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:10Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba542be0f23307f3874","id":"68824ba642be0f23307f38dd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba642be0f23307f38dd","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.208.127.243"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:09Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba442be0f23307f380f","id":"68824ba542be0f23307f3872","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba542be0f23307f3872","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"104.209.7.232"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:08Z","eventTypeName":"GROUP_CREATED","groupId":"68824ba4b448981053345d41","id":"68824ba4b448981053345d9c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba4b448981053345d9c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:06Z","eventTypeName":"INVITED_TO_ORG","id":"68824ba2b448981053345d2e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba2b448981053345d2e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"test-file-31@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:05Z","eventTypeName":"INVITED_TO_ORG","id":"68824ba142be0f23307f37a7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba142be0f23307f37a7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"test-file-354@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:05Z","eventTypeName":"INVITED_TO_ORG","id":"68824ba142be0f23307f379a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824ba142be0f23307f379a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetUsername":"test-503@mongodb.com"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:03Z","eventTypeName":"API_KEY_DELETED","id":"68824b9fb448981053345d11","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9fb448981053345d11","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"rprqzzjl"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:03Z","eventTypeName":"API_KEY_DESCRIPTION_CHANGED","id":"68824b9f42be0f23307f36f8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9f42be0f23307f36f8","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"rprqzzjl"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:02Z","eventTypeName":"API_KEY_CREATED","id":"68824b9e42be0f23307f36e6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9e42be0f23307f36e6","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"rprqzzjl"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:01Z","eventTypeName":"API_KEY_DELETED","id":"68824b9d42be0f23307f36e1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9d42be0f23307f36e1","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:01Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9db448981053345c72","id":"68824b9db448981053345d02","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9db448981053345d02","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:01Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_DELETED","id":"68824b9db448981053345cdf","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9db448981053345cdf","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi","whitelistEntry":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:01Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9cb448981053345c3f","id":"68824b9db448981053345cc7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9db448981053345cc7","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:01Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_ADDED","id":"68824b9db448981053345c6e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9db448981053345c6e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi","whitelistEntry":"4.236.159.225"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:00Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9cb448981053345bce","id":"68824b9cb448981053345c3d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9cb448981053345c3d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"172.203.30.214"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:00Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9c42be0f23307f3673","id":"68824b9c42be0f23307f36d3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9c42be0f23307f36d3","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.55.87.149"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:00Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_DELETED","id":"68824b9c42be0f23307f36b9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9c42be0f23307f36b9","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi","whitelistEntry":"192.168.0.245"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:00Z","eventTypeName":"API_KEY_ACCESS_LIST_ENTRY_ADDED","id":"68824b9c42be0f23307f3672","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9c42be0f23307f3672","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi","whitelistEntry":"192.168.0.245"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:59Z","eventTypeName":"API_KEY_CREATED","id":"68824b9bb448981053345bb6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9bb448981053345bb6","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"gomzfufi"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:58Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9a42be0f23307f3610","id":"68824b9a42be0f23307f366b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9a42be0f23307f366b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.61.212"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:57Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9842be0f23307f35ad","id":"68824b9942be0f23307f3608","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9942be0f23307f3608","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"74.249.78.163"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:52Z","eventTypeName":"TAGS_MODIFIED","id":"68824b9323ccf74013c09e7c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9323ccf74013c09e7c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.225.199"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:48Z","eventTypeName":"GROUP_CREATED","groupId":"68824b9042be0f23307f352b","id":"68824b9042be0f23307f3586","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b9042be0f23307f3586","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.161.60.24"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:48Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8fb448981053345b19","id":"68824b90b448981053345b7c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b90b448981053345b7c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.225.199"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:46Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8d42be0f23307f34b2","id":"68824b8e42be0f23307f350f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8e42be0f23307f350f","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"135.119.235.82"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:45Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8db448981053345ab6","id":"68824b8db448981053345b11","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8db448981053345b11","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"48.211.212.214"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:45Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8c42be0f23307f3451","id":"68824b8d42be0f23307f34ac","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8d42be0f23307f34ac","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.63.5"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:43Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8bb448981053345a2e","id":"68824b8bb448981053345a91","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8bb448981053345a91","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"52.159.225.199"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:42Z","eventTypeName":"TAGS_MODIFIED","id":"68824b8aa230e62fe7f7417e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8aa230e62fe7f7417e","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.163.83.240"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:41Z","eventTypeName":"GROUP_CREATED","groupId":"68824b89b44898105334593e","id":"68824b89b448981053345999","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b89b448981053345999","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"145.132.101.181"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:39Z","eventTypeName":"GROUP_CREATED","groupId":"68824b8642be0f23307f33bd","id":"68824b8742be0f23307f341c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68824b8742be0f23307f341c","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"20.163.83.240"},{"apiKeyId":"5f3b9a38320c484ff32cbf5c","created":"2025-07-24T12:47:15Z","eventTypeName":"GROUP_DELETED","groupId":"688227b778d9415ffc822493","id":"68822b5378d9415ffc82296d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/68822b5378d9415ffc82296d","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"tevdziqg","remoteAddress":"54.144.229.92"},{"apiKeyId":"5f3b9a38320c484ff32cbf5c","created":"2025-07-24T12:31:52Z","eventTypeName":"GROUP_CREATED","groupId":"688227b778d9415ffc822493","id":"688227b878d9415ffc8224ee","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/orgs/a0123456789abcdef012345a/events/688227b878d9415ffc8224ee","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"tevdziqg","remoteAddress":"54.144.229.92"}],"totalCount":0} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestEvents/List_Project_Events/GET_api_atlas_v2_groups_b0123456789abcdef012345b_events_1.snaphost b/test/e2e/testdata/.snapshots/TestEvents/List_Project_Events/GET_api_atlas_v2_groups_b0123456789abcdef012345b_events_1.snaphost index a1a174e78c..47e4861ce0 100644 --- a/test/e2e/testdata/.snapshots/TestEvents/List_Project_Events/GET_api_atlas_v2_groups_b0123456789abcdef012345b_events_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestEvents/List_Project_Events/GET_api_atlas_v2_groups_b0123456789abcdef012345b_events_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 200 OK Connection: close -Content-Length: 38899 +Content-Length: 38498 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:27 GMT +Date: Thu, 24 Jul 2025 15:06:37 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 247 +X-Envoy-Upstream-Service-Time: 189 X-Frame-Options: DENY X-Java-Method: ApiGroupEventsResource::getAllEvents X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events?includeCount=false&includeRaw=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cloudProvider":"SERVERLESS","clusterName":"apix-atlascli-do-not-delete-e2e","created":"2025-07-22T05:13:26Z","eventTypeName":"SERVERLESS_INSTANCE_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"687f1df6edd01228b9cffae3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df6edd01228b9cffae3","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:26Z","dbUserUsername":"CN=user625","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1df6a799aa2ae9e80de7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df6a799aa2ae9e80de7","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:26Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1df6edd01228b9cff70b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df6edd01228b9cff70b","rel":"self"}]},{"created":"2025-07-22T05:13:25Z","diffs":[{"id":"CN=user625@$external","name":null,"params":[],"privileges":null,"roles":[{"db":"admin","role":"atlasAdmin"}],"status":"NEW","type":"USERS"}],"eventTypeName":"AUTOMATION_CONFIG_PUBLISHED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1df5edd01228b9cff6d2","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df5edd01228b9cff6d2","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:25Z","eventTypeName":"MONGODB_USER_X509_CERT_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1df5a799aa2ae9e80de2","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df5a799aa2ae9e80de2","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"cloudProvider":"SERVERLESS","clusterName":"apix-atlascli-do-not-delete-e2e","created":"2025-07-22T05:13:25Z","eventTypeName":"SERVERLESS_INSTANCE_UPDATE_COMPLETED","groupId":"b0123456789abcdef012345b","id":"687f1df5edd01228b9cff63e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df5edd01228b9cff63e","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:24Z","dbUserUsername":"CN=user625","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"687f1df444f1ab3f84231ccb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df444f1ab3f84231ccb","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:23Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1df3edd01228b9cff1cb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df3edd01228b9cff1cb","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:21Z","dbUserUsername":"d0123456789abcdef012345d/user-537","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1df1a799aa2ae9e80dc8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df1a799aa2ae9e80dc8","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:20Z","dbUserUsername":"user-537","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1df044f1ab3f84231cb1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df044f1ab3f84231cb1","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:20Z","dbUserUsername":"user-537","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1df0a799aa2ae9e80dba","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1df0a799aa2ae9e80dba","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:19Z","dbUserUsername":"d0123456789abcdef012345d/user-537","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"687f1def44f1ab3f84231ca3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1def44f1ab3f84231ca3","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:19Z","dbUserUsername":"user-537","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"687f1def44f1ab3f84231c9d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1def44f1ab3f84231c9d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:18Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1dee6b990109b71d2f1f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dee6b990109b71d2f1f","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:18Z","dbUserUsername":"user-403","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1dee44f1ab3f84231c93","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dee44f1ab3f84231c93","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:17Z","dbUserUsername":"user-403","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1ded44f1ab3f84231c8d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ded44f1ab3f84231c8d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:16Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1dec6b990109b71d274d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dec6b990109b71d274d","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:16Z","dbUserUsername":"user-403","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1deca799aa2ae9e80d90","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1deca799aa2ae9e80d90","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:14Z","dbUserUsername":"user-403","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"687f1deaa799aa2ae9e80d7e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1deaa799aa2ae9e80d7e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:13Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1de96b990109b71d2250","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de96b990109b71d2250","rel":"self"}]},{"created":"2025-07-22T05:13:11Z","diffs":[{"id":"Auth","name":null,"params":[{"display":"Auth Mechanisms","new":"MONGODB-CR,SCRAM-SHA-256,MONGODB-OIDC,MONGODB-AWS,MONGODB-X509","old":"MONGODB-CR,SCRAM-SHA-256,MONGODB-X509","param":"deploymentAuthMechanisms"}],"status":"MODIFIED","type":"AUTH"}],"eventTypeName":"AUTOMATION_CONFIG_PUBLISHED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1de7edd01228b9cfebfd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de7edd01228b9cfebfd","rel":"self"}]},{"clusterName":"test-flex","created":"2025-07-22T05:13:10Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"687f1de6edd01228b9cfeb96","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de6edd01228b9cfeb96","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:10Z","eventTypeName":"MONGODB_ROLE_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1de6a799aa2ae9e80d61","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de6a799aa2ae9e80d61","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"cloudProvider":"SERVERLESS","clusterName":"apix-atlascli-do-not-delete-e2e","created":"2025-07-22T05:13:10Z","eventTypeName":"SERVERLESS_INSTANCE_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"687f1de6edd01228b9cfeb94","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de6edd01228b9cfeb94","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:09Z","eventTypeName":"MONGODB_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1de5a799aa2ae9e80d5c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de5a799aa2ae9e80d5c","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"created":"2025-07-22T05:13:09Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1de5edd01228b9cfe7bb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de5edd01228b9cfe7bb","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:09Z","eventTypeName":"MONGODB_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1de5a799aa2ae9e80d57","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de5a799aa2ae9e80d57","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:08Z","eventTypeName":"MONGODB_ROLE_ADDED","groupId":"b0123456789abcdef012345b","id":"687f1de4a799aa2ae9e80d4d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de4a799aa2ae9e80d4d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertConfigId":"687f1ddd44f1ab3f84231b73","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:04Z","eventTypeName":"ALERT_CONFIG_DELETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1de044f1ab3f84231be6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1de044f1ab3f84231be6","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertConfigId":"687f1ddd44f1ab3f84231b73","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:03Z","eventTypeName":"ALERT_CONFIG_CHANGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddfa799aa2ae9e80cd6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddfa799aa2ae9e80cd6","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertConfigId":"687f1ddd44f1ab3f84231b73","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:03Z","eventTypeName":"ALERT_CONFIG_CHANGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddfa799aa2ae9e80cc9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddfa799aa2ae9e80cc9","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertConfigId":"687f1ddd44f1ab3f84231b73","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:01Z","eventTypeName":"ALERT_CONFIG_ADDED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddd44f1ab3f84231b75","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddd44f1ab3f84231b75","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:00Z","eventTypeName":"ALERT_UNACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddc44f1ab3f84231b68","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddc44f1ab3f84231b68","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:13:00Z","eventTypeName":"ALERT_ACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddca799aa2ae9e80c49","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddca799aa2ae9e80c49","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:59Z","eventTypeName":"ALERT_ACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1ddba799aa2ae9e80c3e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1ddba799aa2ae9e80c3e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.174.166.194"},{"clusterName":"cluster-743","created":"2025-07-22T05:12:39Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"687f1dc76b990109b71d0be2","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dc76b990109b71d0be2","rel":"self"}]},{"created":"2025-07-22T05:12:39Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1dc76b990109b71d07e7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dc76b990109b71d07e7","rel":"self"}]},{"clusterName":"cluster-743","created":"2025-07-22T05:12:38Z","eventTypeName":"CLUSTER_UPDATE_COMPLETED","groupId":"b0123456789abcdef012345b","id":"687f1dc66b990109b71d0715","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dc66b990109b71d0715","rel":"self"}]},{"created":"2025-07-22T05:12:32Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1dc0edd01228b9cfccf0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dc0edd01228b9cfccf0","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:12:28Z","eventTypeName":"TENANT_RESTORE_REQUESTED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1dbc44f1ab3f84231a7f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dbc44f1ab3f84231a7f","rel":"self"}],"publicKey":"nmtxqlkl"},{"created":"2025-07-22T05:12:26Z","eventTypeName":"TENANT_RESTORE_COMPLETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1dba9194b6605e9c8dfc","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1dba9194b6605e9c8dfc","rel":"self"}]},{"created":"2025-07-22T05:12:07Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1da7edd01228b9cfba5d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1da7edd01228b9cfba5d","rel":"self"}]},{"created":"2025-07-22T05:12:02Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1da26b990109b71cf13f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1da26b990109b71cf13f","rel":"self"}]},{"clusterName":"cluster-725","created":"2025-07-22T05:12:01Z","eventTypeName":"CLUSTER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1da16b990109b71cf0df","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1da16b990109b71cf0df","rel":"self"}]},{"created":"2025-07-22T05:11:46Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d92edd01228b9cfa91d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d92edd01228b9cfa91d","rel":"self"}]},{"created":"2025-07-22T05:11:43Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d8fedd01228b9cfa462","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8fedd01228b9cfa462","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-725","created":"2025-07-22T05:11:43Z","eventTypeName":"CLUSTER_DELETE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"687f1d8f44f1ab3f842316fa","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8f44f1ab3f842316fa","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:43Z","eventTypeName":"CLUSTER_TAGS_MODIFIED","groupId":"b0123456789abcdef012345b","id":"687f1d8fb832c82280789d69","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8fb832c82280789d69","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96","resourceId":"687f1d8d44f1ab3f842315f0","resourceType":"cluster"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-725","created":"2025-07-22T05:11:41Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d8d44f1ab3f8423160d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8d44f1ab3f8423160d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:41Z","eventTypeName":"API_KEY_REMOVED_FROM_GROUP","groupId":"b0123456789abcdef012345b","id":"687f1d8d44f1ab3f842315de","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8d44f1ab3f842315de","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"krgngpce"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:41Z","eventTypeName":"CLUSTER_TAGS_MODIFIED","groupId":"b0123456789abcdef012345b","id":"687f1d8d8bc3ab78be31b747","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8d8bc3ab78be31b747","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96","resourceId":"687f1d8d44f1ab3f842315f0","resourceType":"cluster"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:40Z","eventTypeName":"API_KEY_ROLES_CHANGED","groupId":"b0123456789abcdef012345b","id":"687f1d8c44f1ab3f84231549","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8c44f1ab3f84231549","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"krgngpce"},{"created":"2025-07-22T05:11:39Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d8b6b990109b71ce1f2","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8b6b990109b71ce1f2","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d8b44f1ab3f84231540","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8b44f1ab3f84231540","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"API_KEY_ADDED_TO_GROUP","groupId":"b0123456789abcdef012345b","id":"687f1d8b44f1ab3f8423153e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8b44f1ab3f8423153e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.193.18","targetPublicKey":"krgngpce"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"FEDERATED_DATABASE_REMOVED","groupId":"b0123456789abcdef012345b","id":"687f1d8b44f1ab3f8423153d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8b44f1ab3f8423153d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:39Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1d8b44f1ab3f8423153a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8b44f1ab3f8423153a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:38Z","eventTypeName":"FEDERATED_DATABASE_QUERY_LOGS_DOWNLOADED","groupId":"b0123456789abcdef012345b","id":"687f1d8a44f1ab3f8423152e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8a44f1ab3f8423152e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:37Z","eventTypeName":"FEDERATED_DATABASE_QUERY_LOGS_DOWNLOADED","groupId":"b0123456789abcdef012345b","id":"687f1d8944f1ab3f84231526","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8944f1ab3f84231526","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:36Z","eventTypeName":"FEDERATED_DATABASE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d88a799aa2ae9e80666","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d88a799aa2ae9e80666","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"created":"2025-07-22T05:11:36Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d88edd01228b9cf9da9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d88edd01228b9cf9da9","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:36Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d8844f1ab3f84231513","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8844f1ab3f84231513","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:36Z","eventTypeName":"FEDERATED_DATABASE_REMOVED","groupId":"b0123456789abcdef012345b","id":"687f1d8844f1ab3f84231511","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8844f1ab3f84231511","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:36Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1d8844f1ab3f8423150f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8844f1ab3f8423150f","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"clusterName":"cluster-260","created":"2025-07-22T05:11:35Z","eventTypeName":"CLUSTER_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1d87edd01228b9cf9d5d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d87edd01228b9cf9d5d","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:35Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"687f1d87a799aa2ae9e8065b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d87a799aa2ae9e8065b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:35Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"687f1d8744f1ab3f842314f3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8744f1ab3f842314f3","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:35Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d8744f1ab3f842314f1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8744f1ab3f842314f1","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:35Z","eventTypeName":"FEDERATED_DATABASE_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d8744f1ab3f842314f0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d8744f1ab3f842314f0","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"64.236.169.134"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:34Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"687f1d86a799aa2ae9e80643","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d86a799aa2ae9e80643","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"687f1d85a799aa2ae9e8063c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d85a799aa2ae9e8063c","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d85a799aa2ae9e8063a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d85a799aa2ae9e8063a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:33Z","eventTypeName":"FEDERATED_DATABASE_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d85a799aa2ae9e80639","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d85a799aa2ae9e80639","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.154.19.226"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"BUCKET_DELETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1d7fa799aa2ae9e80523","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7fa799aa2ae9e80523","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"135.232.176.176"},{"clusterName":"cluster-743","created":"2025-07-22T05:11:27Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"687f1d7fedd01228b9cf96b9","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7fedd01228b9cf96b9","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:27Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d7fa799aa2ae9e80512","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7fa799aa2ae9e80512","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"135.232.176.176"},{"created":"2025-07-22T05:11:26Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d7eedd01228b9cf92ce","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7eedd01228b9cf92ce","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:26Z","eventTypeName":"BUCKET_CREATED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1d7e44f1ab3f8423132e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7e44f1ab3f8423132e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"135.232.176.176"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:25Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"687f1d7d44f1ab3f8423131d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7d44f1ab3f8423131d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"135.232.176.176"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-22T05:11:24Z","eventTypeName":"TENANT_RESTORE_REQUESTED_AUDIT","groupId":"b0123456789abcdef012345b","id":"687f1d7c44f1ab3f842312c3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7c44f1ab3f842312c3","rel":"self"}],"publicKey":"nmtxqlkl"},{"created":"2025-07-22T05:11:24Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d7cedd01228b9cf8d7f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7cedd01228b9cf8d7f","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-260","created":"2025-07-22T05:11:22Z","eventTypeName":"CLUSTER_DELETE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"687f1d7aa799aa2ae9e80434","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7aa799aa2ae9e80434","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96"},{"created":"2025-07-22T05:11:21Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d79edd01228b9cf8850","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d79edd01228b9cf8850","rel":"self"}]},{"clusterName":"cluster-743","created":"2025-07-22T05:11:20Z","eventTypeName":"CLUSTER_READY","groupId":"b0123456789abcdef012345b","id":"687f1d78edd01228b9cf878e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d78edd01228b9cf878e","rel":"self"}]},{"created":"2025-07-22T05:11:19Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d776b990109b71cd512","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d776b990109b71cd512","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-260","created":"2025-07-22T05:11:19Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d7744f1ab3f84231198","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d7744f1ab3f84231198","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.62.96"},{"created":"2025-07-22T05:11:18Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-yb8v8s-shard-00-02.6tztqah.mongodb-dev.net","id":"687f1d766b990109b71cd4e0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d766b990109b71cd4e0","rel":"self"}],"port":27017,"userAlias":"ac-gowfoy8-shard-00-02.6tztqah.mongodb-dev.net"},{"created":"2025-07-22T05:11:18Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-yb8v8s-shard-00-01.6tztqah.mongodb-dev.net","id":"687f1d766b990109b71cd4da","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d766b990109b71cd4da","rel":"self"}],"port":27017,"userAlias":"ac-gowfoy8-shard-00-01.6tztqah.mongodb-dev.net"},{"created":"2025-07-22T05:11:18Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-yb8v8s-shard-00-00.6tztqah.mongodb-dev.net","id":"687f1d766b990109b71cd4d1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d766b990109b71cd4d1","rel":"self"}],"port":27017,"userAlias":"ac-gowfoy8-shard-00-00.6tztqah.mongodb-dev.net"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-165","created":"2025-07-22T05:11:17Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e8032d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d75a799aa2ae9e8032d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.176.37.66"},{"created":"2025-07-22T05:11:17Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d756b990109b71cd0b5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d756b990109b71cd0b5","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-165","created":"2025-07-22T05:11:16Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e802cb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d74a799aa2ae9e802cb","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.176.37.66"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-769","created":"2025-07-22T05:11:16Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e802a8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d74a799aa2ae9e802a8","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.200.23.66"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-769","created":"2025-07-22T05:11:15Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"687f1d73a799aa2ae9e8023e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d73a799aa2ae9e8023e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.200.23.66"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-36","created":"2025-07-22T05:11:14Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e8020a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d72a799aa2ae9e8020a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.159.243.179"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-36","created":"2025-07-22T05:11:14Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e80190","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d72a799aa2ae9e80190","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.159.243.179"},{"created":"2025-07-22T05:11:10Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1d6e6b990109b71cc9fd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d6e6b990109b71cc9fd","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-743","created":"2025-07-22T05:11:08Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f1f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1d6c44f1ab3f84230f1f","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.87.67"},{"created":"2025-07-22T04:53:09Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f19356b990109b71c1a2a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f19356b990109b71c1a2a","rel":"self"}]},{"created":"2025-07-22T04:32:08Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"687f1448eaf9a82f58ee368b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/687f1448eaf9a82f58ee368b","rel":"self"}]}],"totalCount":0} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events?includeCount=false&includeRaw=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:36Z","dbUserUsername":"CN=user969","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bfc42be0f23307f417b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bfc42be0f23307f417b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:35Z","eventTypeName":"MONGODB_USER_X509_CERT_CREATED","groupId":"b0123456789abcdef012345b","id":"68824bfb42be0f23307f4176","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bfb42be0f23307f4176","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:34Z","dbUserUsername":"CN=user969","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"68824bfa42be0f23307f4162","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bfa42be0f23307f4162","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:32Z","dbUserUsername":"d0123456789abcdef012345d/user-884","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bf842be0f23307f4143","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf842be0f23307f4143","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:31Z","dbUserUsername":"user-884","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bf742be0f23307f4136","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf742be0f23307f4136","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:31Z","dbUserUsername":"user-884","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bf742be0f23307f412d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf742be0f23307f412d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"clusterName":"cluster-243","created":"2025-07-24T15:06:30Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"68824bf69e3aa5554712b3df","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf69e3aa5554712b3df","rel":"self"}]},{"created":"2025-07-24T15:06:30Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bf69e3aa5554712afe5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf69e3aa5554712afe5","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:30Z","dbUserUsername":"d0123456789abcdef012345d/user-884","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"68824bf6b4489810533466b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf6b4489810533466b0","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:30Z","dbUserUsername":"user-884","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"68824bf6b4489810533466a7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf6b4489810533466a7","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"clusterName":"cluster-243","created":"2025-07-24T15:06:29Z","eventTypeName":"CLUSTER_UPDATE_COMPLETED","groupId":"b0123456789abcdef012345b","id":"68824bf59e3aa5554712af96","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf59e3aa5554712af96","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:29Z","dbUserUsername":"user-441","eventTypeName":"MONGODB_USER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bf542be0f23307f410d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf542be0f23307f410d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:28Z","dbUserUsername":"user-441","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bf442be0f23307f40fd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf442be0f23307f40fd","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:27Z","dbUserUsername":"user-441","eventTypeName":"MONGODB_USER_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bf342be0f23307f40e8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf342be0f23307f40e8","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"created":"2025-07-24T15:06:27Z","diffs":[{"id":"Auth","name":null,"params":[{"display":"Auth Mechanisms","new":"MONGODB-CR,SCRAM-SHA-256,MONGODB-OIDC,MONGODB-AWS,MONGODB-X509","old":"MONGODB-CR,SCRAM-SHA-256,MONGODB-X509","param":"deploymentAuthMechanisms"}],"status":"MODIFIED","type":"AUTH"}],"eventTypeName":"AUTOMATION_CONFIG_PUBLISHED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824bf36ffec23e20f1f774","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf36ffec23e20f1f774","rel":"self"}]},{"clusterName":"test-flex","created":"2025-07-24T15:06:26Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"68824bf29e3aa5554712ae31","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf29e3aa5554712ae31","rel":"self"}]},{"cloudProvider":"SERVERLESS","clusterName":"apix-atlascli-do-not-delete-e2e","created":"2025-07-24T15:06:26Z","eventTypeName":"SERVERLESS_INSTANCE_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"68824bf29e3aa5554712ae26","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf29e3aa5554712ae26","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:26Z","dbUserUsername":"user-441","eventTypeName":"MONGODB_USER_ADDED","groupId":"b0123456789abcdef012345b","id":"68824bf242be0f23307f40ce","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf242be0f23307f40ce","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"created":"2025-07-24T15:06:26Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bf29e3aa5554712a9ff","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf29e3aa5554712a9ff","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:24Z","eventTypeName":"TENANT_RESTORE_REQUESTED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824bf0b448981053346650","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bf0b448981053346650","rel":"self"}],"publicKey":"nmtxqlkl"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:21Z","eventTypeName":"MONGODB_ROLE_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bed42be0f23307f4065","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bed42be0f23307f4065","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:21Z","eventTypeName":"MONGODB_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bedb4489810533465c3","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bedb4489810533465c3","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:21Z","eventTypeName":"MONGODB_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bedb4489810533465be","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bedb4489810533465be","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:20Z","eventTypeName":"MONGODB_ROLE_ADDED","groupId":"b0123456789abcdef012345b","id":"68824becb4489810533465b4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824becb4489810533465b4","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"created":"2025-07-24T15:06:20Z","eventTypeName":"TENANT_RESTORE_COMPLETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824bec0fc31370304a5cae","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bec0fc31370304a5cae","rel":"self"}]},{"alertConfigId":"68824be442be0f23307f3f65","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:15Z","eventTypeName":"ALERT_CONFIG_DELETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be7b448981053346524","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be7b448981053346524","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"created":"2025-07-24T15:06:14Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824be69e3aa55547129ef5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be69e3aa55547129ef5","rel":"self"}]},{"alertConfigId":"68824be442be0f23307f3f65","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:14Z","eventTypeName":"ALERT_CONFIG_CHANGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be642be0f23307f4042","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be642be0f23307f4042","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"alertConfigId":"68824be442be0f23307f3f65","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:14Z","eventTypeName":"ALERT_CONFIG_CHANGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be6b44898105334651e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be6b44898105334651e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"alertConfigId":"68824be442be0f23307f3f65","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:12Z","eventTypeName":"ALERT_CONFIG_ADDED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be442be0f23307f3f67","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be442be0f23307f3f67","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:11Z","eventTypeName":"ALERT_UNACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be3b448981053346504","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be3b448981053346504","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:11Z","eventTypeName":"ALERT_ACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be3b4489810533464f8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be3b4489810533464f8","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"alertId":"5efdb5dd5b306e51e2e9b05b","apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:06:10Z","eventTypeName":"ALERT_ACKNOWLEDGED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824be242be0f23307f3f44","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824be242be0f23307f3f44","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.84"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-944","created":"2025-07-24T15:06:02Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824bdab448981053346456","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bdab448981053346456","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.159.244.66"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-944","created":"2025-07-24T15:06:01Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"68824bd9b4489810533463ea","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bd9b4489810533463ea","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"52.159.244.66"},{"created":"2025-07-24T15:05:56Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bd49e3aa5554712900f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bd49e3aa5554712900f","rel":"self"}]},{"clusterName":"cluster-572","created":"2025-07-24T15:05:55Z","eventTypeName":"CLUSTER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bd39e3aa55547128f30","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bd39e3aa55547128f30","rel":"self"}]},{"created":"2025-07-24T15:05:50Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bce6ffec23e20f1de4f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bce6ffec23e20f1de4f","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-572","created":"2025-07-24T15:05:49Z","eventTypeName":"CLUSTER_DELETE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"68824bcd42be0f23307f3e1a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bcd42be0f23307f3e1a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:49Z","eventTypeName":"CLUSTER_TAGS_MODIFIED","groupId":"b0123456789abcdef012345b","id":"68824bcdf94b153da20e036a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bcdf94b153da20e036a","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52","resourceId":"68824bcb42be0f23307f3dc1","resourceType":"cluster"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:48Z","eventTypeName":"CLUSTER_TAGS_MODIFIED","groupId":"b0123456789abcdef012345b","id":"68824bcc2e8ec92ca955266b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bcc2e8ec92ca955266b","rel":"self"}],"orgId":"a0123456789abcdef012345a","publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52","resourceId":"68824bcb42be0f23307f3dc1","resourceType":"cluster"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-572","created":"2025-07-24T15:05:47Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824bcb42be0f23307f3ddb","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bcb42be0f23307f3ddb","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52"},{"created":"2025-07-24T15:05:45Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bc96ffec23e20f1d80b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bc96ffec23e20f1d80b","rel":"self"}]},{"clusterName":"cluster-144","created":"2025-07-24T15:05:45Z","eventTypeName":"CLUSTER_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bc96ffec23e20f1d79a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bc96ffec23e20f1d79a","rel":"self"}]},{"created":"2025-07-24T15:05:30Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bba6ffec23e20f1c9e0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bba6ffec23e20f1c9e0","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bb8b448981053346123","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb8b448981053346123","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"FEDERATED_DATABASE_REMOVED","groupId":"b0123456789abcdef012345b","id":"68824bb8b448981053346121","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb8b448981053346121","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bb8b448981053346120","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb8b448981053346120","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"created":"2025-07-24T15:05:28Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bb89e3aa55547127eca","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb89e3aa55547127eca","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:28Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"68824bb842be0f23307f3c5b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb842be0f23307f3c5b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:27Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"68824bb7b448981053346116","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb7b448981053346116","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:27Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"68824bb742be0f23307f3c4d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb742be0f23307f3c4d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:26Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824bb642be0f23307f3c4b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb642be0f23307f3c4b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:26Z","eventTypeName":"FEDERATED_DATABASE_CREATED","groupId":"b0123456789abcdef012345b","id":"68824bb642be0f23307f3c4a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb642be0f23307f3c4a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.214.121"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-144","created":"2025-07-24T15:05:25Z","eventTypeName":"CLUSTER_DELETE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"68824bb5b4489810533460e1","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb5b4489810533460e1","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52"},{"clusterName":"cluster-243","created":"2025-07-24T15:05:25Z","eventTypeName":"CLUSTER_UPDATE_STARTED","groupId":"b0123456789abcdef012345b","id":"68824bb59e3aa55547127c88","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb59e3aa55547127c88","rel":"self"}]},{"created":"2025-07-24T15:05:25Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824bb59e3aa55547127812","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb59e3aa55547127812","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-144","created":"2025-07-24T15:05:24Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824bb4b4489810533460aa","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb4b4489810533460aa","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"145.132.102.52"},{"clusterName":"cluster-243","created":"2025-07-24T15:05:24Z","eventTypeName":"CLUSTER_READY","groupId":"b0123456789abcdef012345b","id":"68824bb49e3aa555471276d6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb49e3aa555471276d6","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:21Z","eventTypeName":"TENANT_RESTORE_REQUESTED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824bb1b448981053346031","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bb1b448981053346031","rel":"self"}],"publicKey":"nmtxqlkl"},{"created":"2025-07-24T15:05:16Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-9tx39n-shard-00-02.ggvcow4.mongodb-dev.net","id":"68824bac6ffec23e20f1c5b8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bac6ffec23e20f1c5b8","rel":"self"}],"port":27017,"userAlias":"ac-spppa4o-shard-00-02.ggvcow4.mongodb-dev.net"},{"created":"2025-07-24T15:05:16Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-9tx39n-shard-00-01.ggvcow4.mongodb-dev.net","id":"68824bac6ffec23e20f1c5b0","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bac6ffec23e20f1c5b0","rel":"self"}],"port":27017,"userAlias":"ac-spppa4o-shard-00-01.ggvcow4.mongodb-dev.net"},{"created":"2025-07-24T15:05:16Z","eventTypeName":"ADD_HOST_AUDIT","groupId":"b0123456789abcdef012345b","hostname":"atlas-9tx39n-shard-00-00.ggvcow4.mongodb-dev.net","id":"68824bac6ffec23e20f1c5a8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824bac6ffec23e20f1c5a8","rel":"self"}],"port":27017,"userAlias":"ac-spppa4o-shard-00-00.ggvcow4.mongodb-dev.net"},{"created":"2025-07-24T15:05:14Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824baa6ffec23e20f1c183","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824baa6ffec23e20f1c183","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:11Z","eventTypeName":"API_KEY_REMOVED_FROM_GROUP","groupId":"b0123456789abcdef012345b","id":"68824ba742be0f23307f394c","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba742be0f23307f394c","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"iipllbbf"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:10Z","eventTypeName":"API_KEY_ROLES_CHANGED","groupId":"b0123456789abcdef012345b","id":"68824ba6b448981053345db5","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba6b448981053345db5","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"iipllbbf"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:10Z","eventTypeName":"API_KEY_ADDED_TO_GROUP","groupId":"b0123456789abcdef012345b","id":"68824ba642be0f23307f38ea","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba642be0f23307f38ea","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"4.236.159.225","targetPublicKey":"iipllbbf"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:09Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824ba542be0f23307f3897","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba542be0f23307f3897","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:09Z","eventTypeName":"FEDERATED_DATABASE_REMOVED","groupId":"b0123456789abcdef012345b","id":"68824ba542be0f23307f388b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba542be0f23307f388b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:09Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_DELETED","groupId":"b0123456789abcdef012345b","id":"68824ba542be0f23307f3884","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba542be0f23307f3884","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"created":"2025-07-24T15:05:08Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824ba49e3aa55547126c2e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba49e3aa55547126c2e","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:07Z","eventTypeName":"FEDERATED_DATABASE_QUERY_LOGS_DOWNLOADED","groupId":"b0123456789abcdef012345b","id":"68824ba3b448981053345d3d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba3b448981053345d3d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-243","created":"2025-07-24T15:05:05Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37fd","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba142be0f23307f37fd","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.61.183"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:05Z","eventTypeName":"FEDERATED_DATABASE_QUERY_LOGS_DOWNLOADED","groupId":"b0123456789abcdef012345b","id":"68824ba1b448981053345d29","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba1b448981053345d29","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:05Z","eventTypeName":"FEDERATED_DATABASE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824ba1b448981053345d24","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba1b448981053345d24","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-525","created":"2025-07-24T15:05:04Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f377e","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba042be0f23307f377e","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.87.149"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:04Z","eventTypeName":"DATA_FEDERATION_QUERY_LIMIT_CONFIGURED","groupId":"b0123456789abcdef012345b","id":"68824ba0b448981053345d1d","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba0b448981053345d1d","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:04Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824ba0b448981053345d1b","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba0b448981053345d1b","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:05:04Z","eventTypeName":"FEDERATED_DATABASE_CREATED","groupId":"b0123456789abcdef012345b","id":"68824ba0b448981053345d1a","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba0b448981053345d1a","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"172.172.158.4"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-525","created":"2025-07-24T15:05:04Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3715","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824ba042be0f23307f3715","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.55.87.149"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:44Z","eventTypeName":"BUCKET_DELETED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824b8c42be0f23307f3450","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8c42be0f23307f3450","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.109.38.179"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:44Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824b8c42be0f23307f344f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8c42be0f23307f344f","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.109.38.179"},{"created":"2025-07-24T15:04:44Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68824b8c6ffec23e20f1b787","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8c6ffec23e20f1b787","rel":"self"}]},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:43Z","eventTypeName":"BUCKET_CREATED_AUDIT","groupId":"b0123456789abcdef012345b","id":"68824b8b42be0f23307f3448","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8b42be0f23307f3448","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.109.38.179"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","created":"2025-07-24T15:04:43Z","eventTypeName":"CLOUD_PROVIDER_ACCESS_AWS_IAM_ROLE_UPDATED","groupId":"b0123456789abcdef012345b","id":"68824b8b42be0f23307f3447","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8b42be0f23307f3447","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"20.109.38.179"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-671","created":"2025-07-24T15:04:42Z","eventTypeName":"CLUSTER_CREATED","groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a23","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8ab448981053345a23","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.60.151"},{"apiKeyId":"6835e821c794bf2ac0a9ec73","clusterName":"cluster-671","created":"2025-07-24T15:04:42Z","eventTypeName":"CLUSTER_PROCESS_ARGS_UPDATE_SUBMITTED","groupId":"b0123456789abcdef012345b","id":"68824b8ab4489810533459b4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68824b8ab4489810533459b4","rel":"self"}],"publicKey":"nmtxqlkl","remoteAddress":"68.220.60.151"},{"created":"2025-07-24T14:51:41Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"6882487d6ffec23e20f102ff","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/6882487d6ffec23e20f102ff","rel":"self"}]},{"created":"2025-07-24T14:24:39Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"6882422707443f623bc8b389","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/6882422707443f623bc8b389","rel":"self"}]},{"created":"2025-07-24T14:02:39Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68823cff07443f623bc78e2f","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68823cff07443f623bc78e2f","rel":"self"}]},{"created":"2025-07-24T13:44:37Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688238c56601db1334aa4760","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688238c56601db1334aa4760","rel":"self"}]},{"created":"2025-07-24T13:25:40Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688234546601db1334a96b48","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688234546601db1334a96b48","rel":"self"}]},{"created":"2025-07-24T13:24:33Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688234116601db1334a953c6","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688234116601db1334a953c6","rel":"self"}]},{"created":"2025-07-24T12:57:31Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68822dbbbad29063eb9902b4","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68822dbbbad29063eb9902b4","rel":"self"}]},{"created":"2025-07-24T12:29:30Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"6882272a84c7405c8048cd60","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/6882272a84c7405c8048cd60","rel":"self"}]},{"created":"2025-07-24T12:06:28Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688221c484c7405c8047d532","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688221c484c7405c8047d532","rel":"self"}]},{"created":"2025-07-24T11:37:25Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"68821af5bad29063eb9584b7","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/68821af5bad29063eb9584b7","rel":"self"}]},{"created":"2025-07-24T11:15:23Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688215cb84c7405c80459a96","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688215cb84c7405c80459a96","rel":"self"}]},{"created":"2025-07-24T11:15:17Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688215c584c7405c80459299","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688215c584c7405c80459299","rel":"self"}]},{"created":"2025-07-24T11:15:14Z","eventTypeName":"PROJECT_SCHEDULED_MAINTENANCE","groupId":"b0123456789abcdef012345b","id":"688215c284c7405c80458df8","isGlobalAdmin":false,"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/events/688215c284c7405c80458df8","rel":"self"}]}],"totalCount":0} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost index 01dc5d6ff4..1d1057c464 100644 --- a/test/e2e/testdata/.snapshots/TestExportBuckets/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestExportBuckets/Create/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 122 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT +Date: Thu, 24 Jul 2025 15:04:43 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 559 +X-Envoy-Upstream-Service-Time: 592 X-Frame-Options: DENY X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::addExportBucket X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"_id":"687f1d7d44f1ab3f842312d5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c"} \ No newline at end of file +{"_id":"68824b8b42be0f23307f343f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost deleted file mode 100644 index 68b0329c46..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 211 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::deleteExportBucket -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost new file mode 100644 index 0000000000..e59ffc3ef2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportBuckets/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 212 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::deleteExportBucket +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost deleted file mode 100644 index eb5645da0f..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_687f1d7d44f1ab3f842312d5_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 143 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::getExportBucketById -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d7d44f1ab3f842312d5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c","region":"us-east-1"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost new file mode 100644 index 0000000000..e65c808f09 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportBuckets/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_68824b8b42be0f23307f343f_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 143 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 57 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::getExportBucketById +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824b8b42be0f23307f343f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c","region":"us-east-1"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportBuckets/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost b/test/e2e/testdata/.snapshots/TestExportBuckets/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost index a8182d57a0..ae44f311ea 100644 --- a/test/e2e/testdata/.snapshots/TestExportBuckets/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestExportBuckets/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost @@ -2,16 +2,16 @@ HTTP/2.0 200 OK Connection: close Content-Length: 12655 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT +Date: Thu, 24 Jul 2025 15:04:44 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 +X-Envoy-Upstream-Service-Time: 106 X-Frame-Options: DENY X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::getAllExportBucketsByGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/backup/exportBuckets?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/backup/exportBuckets?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"_id":"65566a5f1d4b3b0ca4f3b78b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655747a6d598e72693f4f99e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655cffdfba1cf86a9bfa489e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee40876946b4d0c5242e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579cc3315554639345d240f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6567811fe2d2547047c33e13","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f27a166c0c81731962d0a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65708f9524e25107782fb3e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533ddd3e46831f64db99aa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533e1341fe9c69896041ff","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65779dc06089e459ad416e3b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655cce20be29980a23d4c166","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656089ed1097d5290c6d997a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656eed870f0b5047a7520931","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f277ee2111242ab95bd94","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65704d55a31e571a052616b0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579d632d60a4e63904f8de0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65535028e5bf70144968f456","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655632ea78d48563869643cc","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65575896d598e72693f559e5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c7994e7082a19b590fa1b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6564e2ba1632833952eac005","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee3dd0f0b5047a751aede","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6560d4ab1624db2907733bb1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656e03a31a850d499f2d5b3d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f25bce2111242ab95add5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579c0b7b7ac016d26ad76fa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65720b364999f35848025b8d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65786df89814512baa1b95a6","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c789833202313ff81bffa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c79a033202313ff81c45c","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c79a833202313ff81c465","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee5410f0b5047a751c7de","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533e3841fe9c69896042ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65579cefc765d720960e32d5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6564bebccefb4d7db5427f48","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6565c62af939164e316abdbe","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f569f4399a2604ce2a49f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a3276fec83b8e38cfe8","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656872e3b8913366d6364fe9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6569a9e78342ce70d81eac02","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6573541a02b8a340a6f9c729","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6578903474a2527244da3938","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656dd8e6ba490e4e2d84d865","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65719f9e7db22d780f3ccb93","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579ce1215554639345d37c1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65538a4b93a1ac12892464a9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6557887de77d78109e02ca9f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a0d76fec83b8e38cf68","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6555f94c96025633e42b1541","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"657878ccdfdb36646b49aad4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65788642df57787365fcc3ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6555e83d805eda610f7c86a6","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a19bd3bda466e76d5ba","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6560bb421624db29077295f0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d354d28166469ad80861d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65857b747f21f02e679c40ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d2fb4a332de5668b954ee","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a1727348e0ee349d0f46f3","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b921ce47feed4a7428ed85","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c25e6d0f6c111ee02122f1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65d47dc9fb16220dd3cdf3c9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8b5f20b5fff426f49d21d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8c4630b5fff426f4a4091","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8c8d687b346097da4e3d4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65cf2ecdaf0be607530f3d40","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e1ecf7c954d45fa322da6f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581769dfd4ccd59f778eeef","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581941f19389b44225eb2e4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6584126cc6a1fe08fb9df396","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a7ca53e9fc2a183de1993a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658176b684358c216b70d32c","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581d2ef145a5e750bfd4c43","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a65409b2c3b40a7cef53ed","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e08949379d0d269ffcd75b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e1b5aee957463753349319","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e6ff9e30a5ac06fc01abdb","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658c39393b697217272b88e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65af8c280c4d0b2d8c6bcf7b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65af8d94f07ad401147e2ba3","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2078da1e1f43dcbe09cdb","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2086ca1e1f43dcbe0a315","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2229b0f6c111ee01f9e28","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c3999b157c896c4dd47725","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c660a76dc5f96927114939","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65ca67ac444a2a7363f3fabc","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65afb2541ba0b0100077529d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b105218b6037530d9e772a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8cfd987b346097da51fa2","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c201a3a1e1f43dcbe06f6f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658160f7f110ab04fbc322d9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b2610dc9a8b06e53a4ed6e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b3f6d6a05ca04eea6080d2","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b66b8233de064b4a4589e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c224560f6c111ee01fb0a4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c62f381756ab7c89dffe72","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65818d7984358c216b7190e5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d260ba332de5668b93b17","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a93728e432a80506d3116d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65d716576e5e93152df855c8","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"}],"totalCount":1910} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/backup/exportBuckets?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/backup/exportBuckets?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"_id":"65566a5f1d4b3b0ca4f3b78b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655747a6d598e72693f4f99e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655cffdfba1cf86a9bfa489e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee40876946b4d0c5242e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579cc3315554639345d240f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6567811fe2d2547047c33e13","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f27a166c0c81731962d0a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65708f9524e25107782fb3e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533ddd3e46831f64db99aa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533e1341fe9c69896041ff","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65779dc06089e459ad416e3b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655cce20be29980a23d4c166","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656089ed1097d5290c6d997a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656eed870f0b5047a7520931","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f277ee2111242ab95bd94","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65704d55a31e571a052616b0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579d632d60a4e63904f8de0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65535028e5bf70144968f456","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655632ea78d48563869643cc","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65575896d598e72693f559e5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c7994e7082a19b590fa1b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6564e2ba1632833952eac005","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee3dd0f0b5047a751aede","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6560d4ab1624db2907733bb1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656e03a31a850d499f2d5b3d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f25bce2111242ab95add5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579c0b7b7ac016d26ad76fa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65720b364999f35848025b8d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65786df89814512baa1b95a6","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c789833202313ff81bffa","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c79a033202313ff81c45c","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"655c79a833202313ff81c465","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656ee5410f0b5047a751c7de","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65533e3841fe9c69896042ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65579cefc765d720960e32d5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6564bebccefb4d7db5427f48","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6565c62af939164e316abdbe","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656f569f4399a2604ce2a49f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a3276fec83b8e38cfe8","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656872e3b8913366d6364fe9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6569a9e78342ce70d81eac02","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6573541a02b8a340a6f9c729","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6578903474a2527244da3938","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"656dd8e6ba490e4e2d84d865","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65719f9e7db22d780f3ccb93","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6579ce1215554639345d37c1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65538a4b93a1ac12892464a9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6557887de77d78109e02ca9f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a0d76fec83b8e38cf68","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6555f94c96025633e42b1541","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"657878ccdfdb36646b49aad4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65788642df57787365fcc3ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6555e83d805eda610f7c86a6","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65789a19bd3bda466e76d5ba","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6560bb421624db29077295f0","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d354d28166469ad80861d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65857b747f21f02e679c40ad","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d2fb4a332de5668b954ee","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a1727348e0ee349d0f46f3","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b921ce47feed4a7428ed85","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c25e6d0f6c111ee02122f1","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65d47dc9fb16220dd3cdf3c9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8b5f20b5fff426f49d21d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8c4630b5fff426f4a4091","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8c8d687b346097da4e3d4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65cf2ecdaf0be607530f3d40","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e1ecf7c954d45fa322da6f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581769dfd4ccd59f778eeef","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581941f19389b44225eb2e4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6584126cc6a1fe08fb9df396","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a7ca53e9fc2a183de1993a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658176b684358c216b70d32c","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"6581d2ef145a5e750bfd4c43","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a65409b2c3b40a7cef53ed","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e08949379d0d269ffcd75b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e1b5aee957463753349319","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65e6ff9e30a5ac06fc01abdb","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658c39393b697217272b88e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65af8c280c4d0b2d8c6bcf7b","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65af8d94f07ad401147e2ba3","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2078da1e1f43dcbe09cdb","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2086ca1e1f43dcbe0a315","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c2229b0f6c111ee01f9e28","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c3999b157c896c4dd47725","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c660a76dc5f96927114939","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65ca67ac444a2a7363f3fabc","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65afb2541ba0b0100077529d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b105218b6037530d9e772a","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b8cfd987b346097da51fa2","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c201a3a1e1f43dcbe06f6f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"658160f7f110ab04fbc322d9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b2610dc9a8b06e53a4ed6e","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b3f6d6a05ca04eea6080d2","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65b66b8233de064b4a4589e9","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c224560f6c111ee01fb0a4","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65c62f381756ab7c89dffe72","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65818d7984358c216b7190e5","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"659d260ba332de5668b93b17","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65a93728e432a80506d3116d","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"},{"_id":"65d716576e5e93152df855c8","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"60113b99ce5a6a3d72ea7454"}],"totalCount":1918} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_bucket/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_bucket/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost index 0df7407383..e76f5776cc 100644 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Create_bucket/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Create_bucket/POST_api_atlas_v2_groups_b0123456789abcdef012345b_backup_exportBuckets_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 122 Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:18 GMT +Date: Thu, 24 Jul 2025 15:13:46 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 354 +X-Envoy-Upstream-Service-Time: 318 X-Frame-Options: DENY X-Java-Method: ApiAtlasDiskBackupExportBucketsResource::addExportBucket X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"_id":"687f1f1a44f1ab3f8423220f","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c"} \ No newline at end of file +{"_id":"68824daab448981053346fc3","bucketName":"test-bucket","cloudProvider":"AWS","iamRoleId":"c0123456789abcdef012345c"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost index 599ac2c18e..0bc5049052 100644 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 201 Created Content-Length: 1794 Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:16 GMT +Date: Thu, 24 Jul 2025 15:04:41 GMT Deprecation: Mon, 5 Aug 2024 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Sun, 1 Mar 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 804 +X-Envoy-Upstream-Service-Time: 1077 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:17Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802be","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:42Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824b89b4489810533459a0","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost deleted file mode 100644 index 2287993bb7..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 366 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 454 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::createExportRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"Queued"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost new file mode 100644 index 0000000000..03031c8387 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Create_job/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 366 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 511 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::createExportRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"Queued"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_1.snaphost deleted file mode 100644 index fe85e59d48..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 580 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 159 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:18Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_1.snaphost new file mode 100644 index 0000000000..4d78089f44 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 580 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 208 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:13:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost deleted file mode 100644 index ff5561d051..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 304 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost new file mode 100644 index 0000000000..fd624a4c1d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 289 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost deleted file mode 100644 index 06025f7f01..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 144 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost new file mode 100644 index 0000000000..c4a48953c5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Delete_snapshot/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 158 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost deleted file mode 100644 index 6362faf274..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 406 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-22T05:33:14Z","id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"Successful"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost new file mode 100644 index 0000000000..4dda11b77f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Describe_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 406 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-24T15:29:27Z","id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"Successful"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost deleted file mode 100644 index 2dc3872d6a..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1804 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:17 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:17Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802be","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_2.snaphost deleted file mode 100644 index e781a90f4b..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1890 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 126 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:17Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802df","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_3.snaphost deleted file mode 100644 index ded6003ec6..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2187 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 109 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-165-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-iw2l06-shard-0","standardSrv":"mongodb+srv://cluster-165.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:17Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802df","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_4.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_4.snaphost deleted file mode 100644 index 9bdcd681a3..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2192 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 138 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-165-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-iw2l06-shard-0","standardSrv":"mongodb+srv://cluster-165.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:17Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802df","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_5.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_5.snaphost deleted file mode 100644 index 24c4df6693..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:35:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 97 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-165 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-165","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost new file mode 100644 index 0000000000..1e9b0ae7fa --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1804 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:43 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 130 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:42Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824b89b4489810533459a0","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_2.snaphost new file mode 100644 index 0000000000..985dffcc32 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1890 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:43 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:42Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8ab4489810533459cc","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_3.snaphost new file mode 100644 index 0000000000..ec9aec8e11 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2187 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-671-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ezs7ac-shard-0","standardSrv":"mongodb+srv://cluster-671.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:04:42Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8ab4489810533459cc","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_4.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_4.snaphost new file mode 100644 index 0000000000..7fcdc3e6c8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2192 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-671-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ezs7ac-shard-0","standardSrv":"mongodb+srv://cluster-671.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:04:42Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8ab4489810533459cc","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_5.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_5.snaphost new file mode 100644 index 0000000000..af217e2a51 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:32:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 124 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-671 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-671","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index de2814d510..bc6292006f 100644 --- a/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestExportJobs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:16 GMT +Date: Thu, 24 Jul 2025 15:04:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost deleted file mode 100644 index e1d9a24d9a..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 617 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 64 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportRestoreJobs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/exports?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-22T05:33:14Z","id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"Successful"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost new file mode 100644 index 0000000000..dd167d2ed5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/List_jobs/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 617 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportRestoreJobs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/exports?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-24T15:29:27Z","id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"Successful"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost deleted file mode 100644 index 578034ab9e..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 366 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"Queued"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_2.snaphost deleted file mode 100644 index 5d03bf3247..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 370 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:22:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 68 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"InProgress"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_3.snaphost deleted file mode 100644 index a7c2456743..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_exports_687f1fbca799aa2ae9e8156a_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 406 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"createdAt":"2025-07-22T05:21:00Z","customData":[],"exportBucketId":"687f1f1a44f1ab3f8423220f","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-22T05:33:14Z","id":"687f1fbca799aa2ae9e8156a","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-165/2025-07-22T0519/1753161660","snapshotId":"687f1f1a44f1ab3f8423221b","state":"Successful"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost new file mode 100644 index 0000000000..4e753cbaef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 366 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"Queued"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_2.snaphost new file mode 100644 index 0000000000..14eb3ee32a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 370 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:19:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"InProgress"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_3.snaphost new file mode 100644 index 0000000000..70f38d0d85 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_create_job/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_exports_68824e60b44898105334725e_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 406 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:31 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 75 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupExportJobsResource::getExportJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"createdAt":"2025-07-24T15:16:48Z","customData":[],"exportBucketId":"68824daab448981053346fc3","exportStatus":{"exportedCollections":0,"totalCollections":0},"finishedAt":"2025-07-24T15:29:27Z","id":"68824e60b44898105334725e","prefix":"exported_snapshots/a0123456789abcdef012345a/b0123456789abcdef012345b/cluster-671/2025-07-24T1515/1753370208","snapshotId":"68824dabb448981053346fcf","state":"Successful"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost deleted file mode 100644 index a5810af204..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 580 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:18Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_2.snaphost deleted file mode 100644 index 3104f37c10..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 584 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 84 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:18Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_3.snaphost deleted file mode 100644 index 725ea64463..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 609 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 113 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:18Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_4.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_4.snaphost deleted file mode 100644 index d544b1a883..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 631 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 86 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:18Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_5.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_5.snaphost deleted file mode 100644 index 830f294401..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 674 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:19:45Z","description":"test-snapshot","expiresAt":"2025-07-23T05:20:58Z","frequencyType":"ondemand","id":"687f1f1a44f1ab3f8423221b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots/687f1f1a44f1ab3f8423221b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-165","snapshotType":"onDemand","status":"completed","storageSizeBytes":1539325952,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost new file mode 100644 index 0000000000..09e68dd8a7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 580 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:13:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_2.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_2.snaphost new file mode 100644 index 0000000000..5249345087 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 584 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:13:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_3.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_3.snaphost new file mode 100644 index 0000000000..0882353dca --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 609 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:13:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_4.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_4.snaphost new file mode 100644 index 0000000000..1c4e210257 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 631 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 91 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:13:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_5.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_5.snaphost new file mode 100644 index 0000000000..f58626ae2d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 674 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-24T15:15:37Z","description":"test-snapshot","expiresAt":"2025-07-25T15:16:47Z","frequencyType":"ondemand","id":"68824dabb448981053346fcf","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots/68824dabb448981053346fcf","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-671","snapshotType":"onDemand","status":"completed","storageSizeBytes":1541087232,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost deleted file mode 100644 index b4c9e0ef9e..0000000000 --- a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-165_backup_snapshots_687f1f1a44f1ab3f8423221b_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 187 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:18:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster cluster-165 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-165"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost new file mode 100644 index 0000000000..71219631b4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestExportJobs/Watch_snapshot_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-671_backup_snapshots_68824dabb448981053346fcf_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 187 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:13:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster cluster-671 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-671"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestExportJobs/memory.json b/test/e2e/testdata/.snapshots/TestExportJobs/memory.json index 9ee7f4e641..02b618a481 100644 --- a/test/e2e/testdata/.snapshots/TestExportJobs/memory.json +++ b/test/e2e/testdata/.snapshots/TestExportJobs/memory.json @@ -1 +1 @@ -{"TestExportJobs/clusterName":"cluster-165"} \ No newline at end of file +{"TestExportJobs/clusterName":"cluster-671"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost new file mode 100644 index 0000000000..ff1cb94b62 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 189 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:07:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Flex cluster cluster-243 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-243"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost deleted file mode 100644 index f5b2e11fa6..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 189 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:13:31 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Flex cluster cluster-743 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-743"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost new file mode 100644 index 0000000000..62b264b745 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 357 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost deleted file mode 100644 index 3d5c3f9b32..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:31 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 300 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost new file mode 100644 index 0000000000..41a0344309 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 755 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-spppa4o-shard-00-00.ggvcow4.mongodb-dev.net:27017,ac-spppa4o-shard-00-01.ggvcow4.mongodb-dev.net:27017,ac-spppa4o-shard-00-02.ggvcow4.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-9tx39n-shard-0","standardSrv":"mongodb+srv://cluster-243.ggvcow4.mongodb-dev.net"},"createDate":"2025-07-24T15:05:05Z","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37e4","mongoDBVersion":"8.0.12","name":"cluster-243","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost new file mode 100644 index 0000000000..04dab494de --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:08:08 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 82 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-243 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-243","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost deleted file mode 100644 index 1e73762b2c..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 755 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:32 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-gowfoy8-shard-00-00.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-01.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-02.6tztqah.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-yb8v8s-shard-0","standardSrv":"mongodb+srv://cluster-743.6tztqah.mongodb-dev.net"},"createDate":"2025-07-22T05:11:08Z","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f06","mongoDBVersion":"8.0.12","name":"cluster-743","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost deleted file mode 100644 index a6de62eebd..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:14:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 95 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-743 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-743","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost new file mode 100644 index 0000000000..8601907032 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-243_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 400 Bad Request +Content-Length: 189 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:06 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Flex cluster cluster-243 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-243"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost deleted file mode 100644 index e4aba78fb0..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-743_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 189 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:09 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 482 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Flex cluster cluster-743 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-743"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost new file mode 100644 index 0000000000..c60d6f77e7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 449 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:06 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:05Z","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37e4","mongoDBVersion":"8.0.12","name":"cluster-243","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost new file mode 100644 index 0000000000..0a5e4e0789 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-243_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 445 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:05Z","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37e4","mongoDBVersion":"8.0.12","name":"cluster-243","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost deleted file mode 100644 index 9acb9d7e2e..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 449 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 128 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:08Z","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f06","mongoDBVersion":"8.0.12","name":"cluster-743","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost deleted file mode 100644 index 09dc784a00..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-743_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 751 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-gowfoy8-shard-00-00.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-01.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-02.6tztqah.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-yb8v8s-shard-0","standardSrv":"mongodb+srv://cluster-743.6tztqah.mongodb-dev.net"},"createDate":"2025-07-22T05:11:08Z","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f06","mongoDBVersion":"8.0.12","name":"cluster-743","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost index 5382db8280..2204e50e1d 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 439 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:07 GMT +Date: Thu, 24 Jul 2025 15:05:05 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1547 +X-Envoy-Upstream-Service-Time: 583 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexClusterResource::createFlexCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:08Z","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f06","mongoDBVersion":"8.0.12","name":"cluster-743","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:05Z","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37e4","mongoDBVersion":"8.0.12","name":"cluster-243","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost index ec2fee895a..24fd717120 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 400 Bad Request Content-Length: 185 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:24 GMT +Date: Thu, 24 Jul 2025 15:05:21 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 124 +X-Envoy-Upstream-Service-Time: 108 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"detail":"Flex cluster test-flex cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["test-flex"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost index 0a2fc8f56e..0ab345cc55 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Automated/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 401 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:24 GMT +Date: Thu, 24 Jul 2025 15:05:21 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 340 +X-Envoy-Upstream-Service-Time: 284 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexBackupResource::createRestoreJob X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"PENDING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:05:21Z","id":"68824bb1b44898105334602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-24T15:05:21Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"PENDING","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost index 6ed75049da..98a2cbe4a3 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_test-flex_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 400 Bad Request Content-Length: 185 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:28 GMT +Date: Thu, 24 Jul 2025 15:06:23 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 115 +X-Envoy-Upstream-Service-Time: 155 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"detail":"Flex cluster test-flex cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["test-flex"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost index 0e8fa873af..3a35953863 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Create_-_Download/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 401 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:28 GMT +Date: Thu, 24 Jul 2025 15:06:24 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 435 +X-Envoy-Upstream-Service-Time: 235 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexBackupResource::createRestoreJob X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:12:28Z","id":"687f1dbc44f1ab3f84231a7b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:12:28Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"PENDING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:06:24Z","id":"68824bf0b44898105334664c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-24T15:06:24Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"PENDING","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost deleted file mode 100644 index b21a0f8671..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 448 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:12:26Z","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost new file mode 100644 index 0000000000..b3cfa9c156 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 448 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:05:21Z","id":"68824bb1b44898105334602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T15:06:19Z","restoreScheduledDate":"2025-07-24T15:05:21Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost index 3b5a61e3e8..72a022a9b0 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_1.snaphost @@ -1,8 +1,8 @@ HTTP/2.0 200 OK Connection: close -Content-Length: 46100 +Content-Length: 46052 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:27 GMT +Date: Thu, 24 Jul 2025 15:06:22 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; @@ -11,7 +11,7 @@ X-Envoy-Upstream-Service-Time: 134 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJobs X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/restoreJobs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/restoreJobs?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:12:26Z","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T18:00:55Z","id":"687e2bf7a18fdb7a797da270","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T12:01:52Z","restoreScheduledDate":"2025-07-21T12:00:55Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-984-de097ecc983","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:59:56Z","id":"687e2bbca18fdb7a797da12b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T12:00:52Z","restoreScheduledDate":"2025-07-21T11:59:56Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-984-de097ecc983","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:51:33Z","id":"687e29c5a18fdb7a797d94a1","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T11:52:31Z","restoreScheduledDate":"2025-07-21T11:51:33Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-965-a5a950935e1","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:50:34Z","id":"687e298a9f95ae4ff84110d0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T11:51:29Z","restoreScheduledDate":"2025-07-21T11:50:34Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-965-a5a950935e1","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T11:14:33Z","id":"687dccb999e8c529281c745f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T05:15:28Z","restoreScheduledDate":"2025-07-21T05:14:33Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-153","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T11:13:32Z","id":"687dcc7c3921c56d58edd67e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T05:14:28Z","restoreScheduledDate":"2025-07-21T05:13:32Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-153","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-18T11:13:40Z","id":"6879d804ab06ef2bf8205184","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-18T05:14:41Z","restoreScheduledDate":"2025-07-18T05:13:40Z","snapshotFinishedDate":"2025-07-10T17:06:39Z","snapshotId":"686ff2d01fc2d76a2fab3917","status":"COMPLETED","targetDeploymentItemName":"cluster-220","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-18T11:12:39Z","id":"6879d7c7d6ddd8091c82d393","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-18T05:13:35Z","restoreScheduledDate":"2025-07-18T05:12:39Z","snapshotFinishedDate":"2025-07-10T17:06:39Z","snapshotId":"686ff2d01fc2d76a2fab3917","status":"COMPLETED","targetDeploymentItemName":"cluster-220","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-17T11:12:15Z","id":"6878862f59eba13a86f47a5f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-17T05:13:14Z","restoreScheduledDate":"2025-07-17T05:12:15Z","snapshotFinishedDate":"2025-07-09T17:06:37Z","snapshotId":"686ea14d3959f13ce785c4ce","status":"COMPLETED","targetDeploymentItemName":"cluster-862","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-17T11:11:15Z","id":"687885f359eba13a86f4724a","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-17T05:12:11Z","restoreScheduledDate":"2025-07-17T05:11:15Z","snapshotFinishedDate":"2025-07-09T17:06:37Z","snapshotId":"686ea14d3959f13ce785c4ce","status":"COMPLETED","targetDeploymentItemName":"cluster-862","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-16T11:12:51Z","id":"687734d361a62061d4f6b186","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-16T05:13:49Z","restoreScheduledDate":"2025-07-16T05:12:51Z","snapshotFinishedDate":"2025-07-08T17:07:30Z","snapshotId":"686d50020357a01b94abeefe","status":"COMPLETED","targetDeploymentItemName":"cluster-507","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-16T11:11:44Z","id":"6877349061a62061d4f6a93c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-16T05:12:45Z","restoreScheduledDate":"2025-07-16T05:11:44Z","snapshotFinishedDate":"2025-07-08T17:07:30Z","snapshotId":"686d50020357a01b94abeefe","status":"COMPLETED","targetDeploymentItemName":"cluster-507","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:31:38Z","id":"68761ffa34975c47fd52251c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:32:35Z","restoreScheduledDate":"2025-07-15T09:31:38Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-85-37711d299749","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:30:43Z","id":"68761fc3cf81a12c755de03b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:31:36Z","restoreScheduledDate":"2025-07-15T09:30:43Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-85-37711d299749","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:01:58Z","id":"6876190634975c47fd51d49e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:02:54Z","restoreScheduledDate":"2025-07-15T09:01:58Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-38-14e05539455d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:00:59Z","id":"687618cbcf81a12c755d9832","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:01:53Z","restoreScheduledDate":"2025-07-15T09:00:59Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-38-14e05539455d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:45:10Z","id":"6876151634975c47fd51a82c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:46:24Z","restoreScheduledDate":"2025-07-15T08:45:10Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-158-52eb49cadbf","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:44:57Z","id":"68761509cf81a12c755d6bb7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:46:06Z","restoreScheduledDate":"2025-07-15T08:44:57Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-970-8babf19ea7d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:44:02Z","id":"687614d234975c47fd51a126","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:45:09Z","restoreScheduledDate":"2025-07-15T08:44:02Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-158-52eb49cadbf","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:43:46Z","id":"687614c2cf81a12c755d6530","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:44:53Z","restoreScheduledDate":"2025-07-15T08:43:46Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-970-8babf19ea7d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T11:13:02Z","id":"6875e35ecf81a12c755d1770","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T05:14:00Z","restoreScheduledDate":"2025-07-15T05:13:02Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-364","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T11:11:59Z","id":"6875e31f34975c47fd5155a8","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T05:12:59Z","restoreScheduledDate":"2025-07-15T05:11:59Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-364","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-14T21:00:59Z","id":"68751babd81a2d4bb4ed4da5","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-14T15:01:58Z","restoreScheduledDate":"2025-07-14T15:00:59Z","snapshotFinishedDate":"2025-07-06T17:07:00Z","snapshotId":"686aace45f00dc2b227010f5","status":"COMPLETED","targetDeploymentItemName":"cluster-341-1a07752ffd0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-14T21:00:03Z","id":"68751b7341cc507faa5d1f7d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-14T15:00:57Z","restoreScheduledDate":"2025-07-14T15:00:03Z","snapshotFinishedDate":"2025-07-06T17:07:00Z","snapshotId":"686aace45f00dc2b227010f5","status":"COMPLETED","targetDeploymentItemName":"cluster-341-1a07752ffd0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T15:50:29Z","id":"6870de6562d39f5826bd8309","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T09:51:28Z","restoreScheduledDate":"2025-07-11T09:50:29Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-611-a1fb3419417","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T15:49:26Z","id":"6870de2662d39f5826bd8203","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T09:50:27Z","restoreScheduledDate":"2025-07-11T09:49:26Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-611-a1fb3419417","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T14:47:20Z","id":"6870cf981eac23779588fdd9","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T08:48:18Z","restoreScheduledDate":"2025-07-11T08:47:20Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-702-635806fd69a","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T14:46:25Z","id":"6870cf611eac23779588fd1f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T08:47:18Z","restoreScheduledDate":"2025-07-11T08:46:25Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-702-635806fd69a","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T11:11:03Z","id":"68709ce7d1742264a624c857","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T05:11:59Z","restoreScheduledDate":"2025-07-11T05:11:03Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-579","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T11:10:03Z","id":"68709cabe3d03d13150a389d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T05:11:00Z","restoreScheduledDate":"2025-07-11T05:10:03Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-579","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-10T11:11:43Z","id":"686f4b8f2f08ee49a6d9a925","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-10T05:12:37Z","restoreScheduledDate":"2025-07-10T05:11:43Z","snapshotFinishedDate":"2025-07-02T17:06:55Z","snapshotId":"686566e027d9b543213cab95","status":"COMPLETED","targetDeploymentItemName":"cluster-116","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-10T11:10:42Z","id":"686f4b529ae0b11dc199339e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-10T05:11:38Z","restoreScheduledDate":"2025-07-10T05:10:42Z","snapshotFinishedDate":"2025-07-02T17:06:55Z","snapshotId":"686566e027d9b543213cab95","status":"COMPLETED","targetDeploymentItemName":"cluster-116","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-09T11:11:47Z","id":"686dfa136daa3f5fb4261aad","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-09T05:12:46Z","restoreScheduledDate":"2025-07-09T05:11:47Z","snapshotFinishedDate":"2025-07-01T17:06:59Z","snapshotId":"68641563dd616238e866fb63","status":"COMPLETED","targetDeploymentItemName":"cluster-515","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-09T11:10:42Z","id":"686df9d2e0c7c7513581a7c7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-09T05:11:43Z","restoreScheduledDate":"2025-07-09T05:10:42Z","snapshotFinishedDate":"2025-07-01T17:06:59Z","snapshotId":"68641563dd616238e866fb63","status":"COMPLETED","targetDeploymentItemName":"cluster-515","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:32:34Z","id":"686cf3c2d2acab03d63e95ba","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:33:37Z","restoreScheduledDate":"2025-07-08T10:32:34Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-9bd165e7c1b","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:31:35Z","id":"686cf38741ac4047bcc722e4","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:32:31Z","restoreScheduledDate":"2025-07-08T10:31:35Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-9bd165e7c1b","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:27:42Z","id":"686cf29e41ac4047bcc71c9c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:28:40Z","restoreScheduledDate":"2025-07-08T10:27:42Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-8017aa38606","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:26:47Z","id":"686cf267d2acab03d63e8b43","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:27:40Z","restoreScheduledDate":"2025-07-08T10:26:47Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-8017aa38606","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:42:57Z","id":"686ce82141ac4047bcc6889a","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:43:55Z","restoreScheduledDate":"2025-07-08T09:42:57Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-683-925de5ccf17","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:41:59Z","id":"686ce7e7d2acab03d63df7ed","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:42:55Z","restoreScheduledDate":"2025-07-08T09:41:59Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-683-925de5ccf17","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:41:21Z","id":"686ce7c141ac4047bcc6852b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:42:22Z","restoreScheduledDate":"2025-07-08T09:41:21Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-157-b1380afc6ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:40:22Z","id":"686ce78641ac4047bcc6836f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:41:18Z","restoreScheduledDate":"2025-07-08T09:40:22Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-157-b1380afc6ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T11:10:17Z","id":"686ca83984ed3a711cd1f225","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T05:11:16Z","restoreScheduledDate":"2025-07-08T05:10:17Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-764","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T11:09:13Z","id":"686ca7f94db8053b7bc2dda9","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T05:10:12Z","restoreScheduledDate":"2025-07-08T05:09:13Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-764","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-07T11:10:50Z","id":"686b56da6e2ab3585df8d28d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-07T05:11:51Z","restoreScheduledDate":"2025-07-07T05:10:50Z","snapshotFinishedDate":"2025-06-29T17:07:06Z","snapshotId":"6861726b4c35572b1ce88315","status":"COMPLETED","targetDeploymentItemName":"cluster-308","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-07T11:09:51Z","id":"686b569f6e2ab3585df8cba8","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-07T05:10:46Z","restoreScheduledDate":"2025-07-07T05:09:51Z","snapshotFinishedDate":"2025-06-29T17:07:06Z","snapshotId":"6861726b4c35572b1ce88315","status":"COMPLETED","targetDeploymentItemName":"cluster-308","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T22:01:51Z","id":"6867faef3d1f2501ea61e3bb","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T16:02:51Z","restoreScheduledDate":"2025-07-04T16:01:51Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-14-4b8c1b89d114","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T22:00:52Z","id":"6867fab43d1f2501ea61e23d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T16:01:48Z","restoreScheduledDate":"2025-07-04T16:00:52Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-14-4b8c1b89d114","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T21:10:10Z","id":"6867eed2973ae75fe39fec75","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T15:11:11Z","restoreScheduledDate":"2025-07-04T15:10:10Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-287-a2cb3d988ea","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T21:09:07Z","id":"6867ee933d1f2501ea6172b0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T15:10:07Z","restoreScheduledDate":"2025-07-04T15:09:07Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-287-a2cb3d988ea","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T16:48:14Z","id":"6867b16e6a7e8d43d6e84c0f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T10:49:11Z","restoreScheduledDate":"2025-07-04T10:48:14Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-155-d713a658e69","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T16:47:12Z","id":"6867b130c72bc06a4a741b2b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T10:48:10Z","restoreScheduledDate":"2025-07-04T10:47:12Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-155-d713a658e69","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T11:11:26Z","id":"6867627ec28b745042e7b953","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T05:12:23Z","restoreScheduledDate":"2025-07-04T05:11:26Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-160","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T11:10:26Z","id":"68676242c28b745042e7b6d7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T05:11:24Z","restoreScheduledDate":"2025-07-04T05:10:26Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-160","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T17:45:01Z","id":"68666d3dcdfca51b007ca62c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T11:45:55Z","restoreScheduledDate":"2025-07-03T11:45:01Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-85-1a8e42d4df81","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T17:44:02Z","id":"68666d02cdfca51b007c9e10","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T11:44:59Z","restoreScheduledDate":"2025-07-03T11:44:02Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-85-1a8e42d4df81","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:24:20Z","id":"68663e34cdfca51b007b6407","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:25:41Z","restoreScheduledDate":"2025-07-03T08:24:20Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-847-da7b832de3d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:57Z","id":"68663de1574a2a1521cb463e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:36Z","restoreScheduledDate":"2025-07-03T08:22:57Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-910-51ffe20bdd4","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:55Z","id":"68663ddf574a2a1521cb4606","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:25:23Z","restoreScheduledDate":"2025-07-03T08:22:55Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-619-b0d772daa62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:54Z","id":"68663dde574a2a1521cb45de","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:38Z","restoreScheduledDate":"2025-07-03T08:22:54Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-512-b7a5d812b61","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:06Z","id":"68663d72cdfca51b007b55a7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:17Z","restoreScheduledDate":"2025-07-03T08:21:06Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-847-da7b832de3d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:05Z","id":"68663d71cdfca51b007b5579","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:53Z","restoreScheduledDate":"2025-07-03T08:21:05Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-910-51ffe20bdd4","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:03Z","id":"68663d6fcdfca51b007b553b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:54Z","restoreScheduledDate":"2025-07-03T08:21:03Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-619-b0d772daa62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:20:58Z","id":"68663d6a574a2a1521cb3b2f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:51Z","restoreScheduledDate":"2025-07-03T08:20:58Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-512-b7a5d812b61","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T11:12:36Z","id":"68661144e5d7337cdb5fd169","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T05:13:35Z","restoreScheduledDate":"2025-07-03T05:12:36Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-618","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T11:11:32Z","id":"68661104ffcdb760c6bf9d89","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T05:12:34Z","restoreScheduledDate":"2025-07-03T05:11:32Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-618","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-02T11:11:48Z","id":"6864bf9468b5054fe398c346","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-02T05:12:50Z","restoreScheduledDate":"2025-07-02T05:11:48Z","snapshotFinishedDate":"2025-06-24T17:07:02Z","snapshotId":"685adae68d6db4789f28abc8","status":"COMPLETED","targetDeploymentItemName":"cluster-231","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-02T11:10:41Z","id":"6864bf5173cdb372a930db23","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-02T05:11:44Z","restoreScheduledDate":"2025-07-02T05:10:41Z","snapshotFinishedDate":"2025-06-24T17:07:02Z","snapshotId":"685adae68d6db4789f28abc8","status":"COMPLETED","targetDeploymentItemName":"cluster-231","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T19:00:55Z","id":"6863dc079b4dc16ccf474815","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T13:01:53Z","restoreScheduledDate":"2025-07-01T13:00:55Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-21-974928daaeb2","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T18:59:52Z","id":"6863dbc89b4dc16ccf474575","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T13:00:53Z","restoreScheduledDate":"2025-07-01T12:59:52Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-21-974928daaeb2","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:57:12Z","id":"6863bf08f081bb022eaa3277","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:58:34Z","restoreScheduledDate":"2025-07-01T10:57:12Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-880-bd02ce6eb62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:56:59Z","id":"6863befb20fd844df3772262","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:58:22Z","restoreScheduledDate":"2025-07-01T10:56:59Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-970-9a27ba21f0c","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:56:35Z","id":"6863bee320fd844df377200e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:57:54Z","restoreScheduledDate":"2025-07-01T10:56:35Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-996-c8d46012a2e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:32Z","id":"6863bea420fd844df3771cde","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:57:08Z","restoreScheduledDate":"2025-07-01T10:55:32Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-880-bd02ce6eb62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:24Z","id":"6863be9cf081bb022eaa2db0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:56:56Z","restoreScheduledDate":"2025-07-01T10:55:24Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-970-9a27ba21f0c","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:08Z","id":"6863be8c20fd844df3771a34","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:56:31Z","restoreScheduledDate":"2025-07-01T10:55:08Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-996-c8d46012a2e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T11:11:49Z","id":"68636e1590ed24487dfc30a3","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T05:12:51Z","restoreScheduledDate":"2025-07-01T05:11:49Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-674","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T11:10:49Z","id":"68636dd990ed24487dfc2b2e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T05:11:47Z","restoreScheduledDate":"2025-07-01T05:10:49Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-674","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T19:16:16Z","id":"68628e2054262f52217bafcc","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T13:17:14Z","restoreScheduledDate":"2025-06-30T13:16:16Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-631-39c8d671cca","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T19:15:18Z","id":"68628de654262f52217bad9c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T13:16:12Z","restoreScheduledDate":"2025-06-30T13:15:18Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-631-39c8d671cca","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T15:32:00Z","id":"68625990b061b0401a4c4e56","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T09:32:55Z","restoreScheduledDate":"2025-06-30T09:32:00Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-520-8b0b4005e9e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T15:31:01Z","id":"68625955b061b0401a4c4b74","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T09:31:55Z","restoreScheduledDate":"2025-06-30T09:31:01Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-520-8b0b4005e9e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T11:10:16Z","id":"68621c380fdc646bf5f3b5b3","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T05:11:10Z","restoreScheduledDate":"2025-06-30T05:10:16Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-774","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T11:09:17Z","id":"68621bfdb061b0401a4bf749","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T05:10:13Z","restoreScheduledDate":"2025-06-30T05:09:17Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-774","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T23:01:57Z","id":"685ece858e92da1dfb4e200c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T17:02:56Z","restoreScheduledDate":"2025-06-27T17:01:57Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-233-62e09263ea5","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T23:00:53Z","id":"685ece450340bc6723c516c0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T17:01:52Z","restoreScheduledDate":"2025-06-27T17:00:53Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-233-62e09263ea5","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T16:35:18Z","id":"685e73e68e92da1dfb4d5cdb","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T10:36:14Z","restoreScheduledDate":"2025-06-27T10:35:18Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-136-4d6a5cc3ac7","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T16:34:23Z","id":"685e73af8e92da1dfb4d5aa2","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T10:35:17Z","restoreScheduledDate":"2025-06-27T10:34:23Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-136-4d6a5cc3ac7","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T16:18:30Z","id":"685e6ff60340bc6723c433f1","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T10:19:27Z","restoreScheduledDate":"2025-06-27T10:18:30Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-814-58a44c797dd","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T16:17:35Z","id":"685e6fbf0340bc6723c4332c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T10:18:29Z","restoreScheduledDate":"2025-06-27T10:17:35Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-814-58a44c797dd","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T11:09:28Z","id":"685e2788606b1d010d5eed2f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T05:10:27Z","restoreScheduledDate":"2025-06-27T05:09:28Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-628","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T11:08:26Z","id":"685e274a0340bc6723c3e726","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T05:09:26Z","restoreScheduledDate":"2025-06-27T05:08:26Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-628","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:41:59Z","id":"685d6a4790dde270bb656149","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:42:55Z","restoreScheduledDate":"2025-06-26T15:41:59Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-259-7d27f2c69b0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:41:01Z","id":"685d6a0d38a6bc5189df56ec","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:41:58Z","restoreScheduledDate":"2025-06-26T15:41:01Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-259-7d27f2c69b0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:27:58Z","id":"685d66fea8ee0b5e8b1a8b52","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:33:15Z","restoreScheduledDate":"2025-06-26T15:27:58Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-567-891d09f8d08","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:26:59Z","id":"685d66c3bde02e44a604602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:27:55Z","restoreScheduledDate":"2025-06-26T15:26:59Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-567-891d09f8d08","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:22:41Z","id":"685d65c1bde02e44a604514c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:23:52Z","restoreScheduledDate":"2025-06-26T15:22:41Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-812-3b0b3f172c9","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:22:22Z","id":"685d65aea8ee0b5e8b1a7878","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:23:33Z","restoreScheduledDate":"2025-06-26T15:22:22Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-936-d019f948572","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-26T21:21:21Z","id":"685d6571a8ee0b5e8b1a7436","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-26T15:22:38Z","restoreScheduledDate":"2025-06-26T15:21:21Z","snapshotFinishedDate":"2025-06-18T17:07:08Z","snapshotId":"6852f1ee43ddd6572ab88656","status":"COMPLETED","targetDeploymentItemName":"cluster-812-3b0b3f172c9","targetProjectId":"b0123456789abcdef012345b"}],"totalCount":958} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/restoreJobs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/restoreJobs?includeCount=true&itemsPerPage=100&pageNum=2","rel":"next"}],"results":[{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:05:21Z","id":"68824bb1b44898105334602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T15:06:19Z","restoreScheduledDate":"2025-07-24T15:05:21Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-24T11:13:07Z","id":"6881c0e3b7b97c2537f63ed1","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T05:14:00Z","restoreScheduledDate":"2025-07-24T05:13:07Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-973","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-24T11:12:08Z","id":"6881c0a878d9415ffc818171","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T05:13:02Z","restoreScheduledDate":"2025-07-24T05:12:08Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-973","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-23T21:51:25Z","id":"688104fd931a6d66eb9e56b1","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-23T15:52:26Z","restoreScheduledDate":"2025-07-23T15:51:25Z","snapshotFinishedDate":"2025-07-15T17:06:42Z","snapshotId":"68768a52252e3b4f56c7de3d","status":"COMPLETED","targetDeploymentItemName":"cluster-353-2b6741c4b99","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-23T21:50:25Z","id":"688104c1dca63e0222144113","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-23T15:51:22Z","restoreScheduledDate":"2025-07-23T15:50:25Z","snapshotFinishedDate":"2025-07-15T17:06:42Z","snapshotId":"68768a52252e3b4f56c7de3d","status":"COMPLETED","targetDeploymentItemName":"cluster-353-2b6741c4b99","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-23T17:04:29Z","id":"6880c1bdfd10bf5a6970872e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-23T11:05:28Z","restoreScheduledDate":"2025-07-23T11:04:29Z","snapshotFinishedDate":"2025-07-15T17:06:42Z","snapshotId":"68768a52252e3b4f56c7de3d","status":"COMPLETED","targetDeploymentItemName":"cluster-944","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-23T17:03:18Z","id":"6880c176fd10bf5a6970842b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-23T11:04:22Z","restoreScheduledDate":"2025-07-23T11:03:18Z","snapshotFinishedDate":"2025-07-15T17:06:42Z","snapshotId":"68768a52252e3b4f56c7de3d","status":"COMPLETED","targetDeploymentItemName":"cluster-944","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T22:45:51Z","id":"687fc03f604070339f0b04a5","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T16:47:07Z","restoreScheduledDate":"2025-07-22T16:45:51Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-482-6c892a752a0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T22:45:43Z","id":"687fc03774b4ba22b5b13726","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T16:47:02Z","restoreScheduledDate":"2025-07-22T16:45:43Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-319-d01f0e943bb","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T22:44:36Z","id":"687fbff474b4ba22b5b1349d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T16:45:47Z","restoreScheduledDate":"2025-07-22T16:44:36Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-482-6c892a752a0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T22:44:27Z","id":"687fbfeb604070339f0b01e8","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T16:45:38Z","restoreScheduledDate":"2025-07-22T16:44:27Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-319-d01f0e943bb","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T14:53:55Z","id":"687f51a3f7eeff4ea5d9ac5f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T08:54:52Z","restoreScheduledDate":"2025-07-22T08:53:55Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-911-4508fd658ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T14:52:56Z","id":"687f5168f7eeff4ea5d9a79b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T08:53:52Z","restoreScheduledDate":"2025-07-22T08:52:56Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-911-4508fd658ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:12:28Z","id":"687f1dbc44f1ab3f84231a7b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:13:27Z","restoreScheduledDate":"2025-07-22T05:12:28Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:12:26Z","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T18:00:55Z","id":"687e2bf7a18fdb7a797da270","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T12:01:52Z","restoreScheduledDate":"2025-07-21T12:00:55Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-984-de097ecc983","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:59:56Z","id":"687e2bbca18fdb7a797da12b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T12:00:52Z","restoreScheduledDate":"2025-07-21T11:59:56Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-984-de097ecc983","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:51:33Z","id":"687e29c5a18fdb7a797d94a1","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T11:52:31Z","restoreScheduledDate":"2025-07-21T11:51:33Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-965-a5a950935e1","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T17:50:34Z","id":"687e298a9f95ae4ff84110d0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T11:51:29Z","restoreScheduledDate":"2025-07-21T11:50:34Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-965-a5a950935e1","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T11:14:33Z","id":"687dccb999e8c529281c745f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T05:15:28Z","restoreScheduledDate":"2025-07-21T05:14:33Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-153","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-21T11:13:32Z","id":"687dcc7c3921c56d58edd67e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-21T05:14:28Z","restoreScheduledDate":"2025-07-21T05:13:32Z","snapshotFinishedDate":"2025-07-13T17:07:08Z","snapshotId":"6873e76ce5e6c509a9748dae","status":"COMPLETED","targetDeploymentItemName":"cluster-153","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-18T11:13:40Z","id":"6879d804ab06ef2bf8205184","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-18T05:14:41Z","restoreScheduledDate":"2025-07-18T05:13:40Z","snapshotFinishedDate":"2025-07-10T17:06:39Z","snapshotId":"686ff2d01fc2d76a2fab3917","status":"COMPLETED","targetDeploymentItemName":"cluster-220","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-18T11:12:39Z","id":"6879d7c7d6ddd8091c82d393","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-18T05:13:35Z","restoreScheduledDate":"2025-07-18T05:12:39Z","snapshotFinishedDate":"2025-07-10T17:06:39Z","snapshotId":"686ff2d01fc2d76a2fab3917","status":"COMPLETED","targetDeploymentItemName":"cluster-220","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-17T11:12:15Z","id":"6878862f59eba13a86f47a5f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-17T05:13:14Z","restoreScheduledDate":"2025-07-17T05:12:15Z","snapshotFinishedDate":"2025-07-09T17:06:37Z","snapshotId":"686ea14d3959f13ce785c4ce","status":"COMPLETED","targetDeploymentItemName":"cluster-862","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-17T11:11:15Z","id":"687885f359eba13a86f4724a","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-17T05:12:11Z","restoreScheduledDate":"2025-07-17T05:11:15Z","snapshotFinishedDate":"2025-07-09T17:06:37Z","snapshotId":"686ea14d3959f13ce785c4ce","status":"COMPLETED","targetDeploymentItemName":"cluster-862","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-16T11:12:51Z","id":"687734d361a62061d4f6b186","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-16T05:13:49Z","restoreScheduledDate":"2025-07-16T05:12:51Z","snapshotFinishedDate":"2025-07-08T17:07:30Z","snapshotId":"686d50020357a01b94abeefe","status":"COMPLETED","targetDeploymentItemName":"cluster-507","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-16T11:11:44Z","id":"6877349061a62061d4f6a93c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-16T05:12:45Z","restoreScheduledDate":"2025-07-16T05:11:44Z","snapshotFinishedDate":"2025-07-08T17:07:30Z","snapshotId":"686d50020357a01b94abeefe","status":"COMPLETED","targetDeploymentItemName":"cluster-507","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:31:38Z","id":"68761ffa34975c47fd52251c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:32:35Z","restoreScheduledDate":"2025-07-15T09:31:38Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-85-37711d299749","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:30:43Z","id":"68761fc3cf81a12c755de03b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:31:36Z","restoreScheduledDate":"2025-07-15T09:30:43Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-85-37711d299749","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:01:58Z","id":"6876190634975c47fd51d49e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:02:54Z","restoreScheduledDate":"2025-07-15T09:01:58Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-38-14e05539455d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T15:00:59Z","id":"687618cbcf81a12c755d9832","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T09:01:53Z","restoreScheduledDate":"2025-07-15T09:00:59Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-38-14e05539455d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:45:10Z","id":"6876151634975c47fd51a82c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:46:24Z","restoreScheduledDate":"2025-07-15T08:45:10Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-158-52eb49cadbf","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:44:57Z","id":"68761509cf81a12c755d6bb7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:46:06Z","restoreScheduledDate":"2025-07-15T08:44:57Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-970-8babf19ea7d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:44:02Z","id":"687614d234975c47fd51a126","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:45:09Z","restoreScheduledDate":"2025-07-15T08:44:02Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-158-52eb49cadbf","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T14:43:46Z","id":"687614c2cf81a12c755d6530","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T08:44:53Z","restoreScheduledDate":"2025-07-15T08:43:46Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-970-8babf19ea7d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T11:13:02Z","id":"6875e35ecf81a12c755d1770","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T05:14:00Z","restoreScheduledDate":"2025-07-15T05:13:02Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-364","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-15T11:11:59Z","id":"6875e31f34975c47fd5155a8","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-15T05:12:59Z","restoreScheduledDate":"2025-07-15T05:11:59Z","snapshotFinishedDate":"2025-07-07T17:07:27Z","snapshotId":"686bfe7e809e7d30f15258dc","status":"COMPLETED","targetDeploymentItemName":"cluster-364","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-14T21:00:59Z","id":"68751babd81a2d4bb4ed4da5","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-14T15:01:58Z","restoreScheduledDate":"2025-07-14T15:00:59Z","snapshotFinishedDate":"2025-07-06T17:07:00Z","snapshotId":"686aace45f00dc2b227010f5","status":"COMPLETED","targetDeploymentItemName":"cluster-341-1a07752ffd0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-14T21:00:03Z","id":"68751b7341cc507faa5d1f7d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-14T15:00:57Z","restoreScheduledDate":"2025-07-14T15:00:03Z","snapshotFinishedDate":"2025-07-06T17:07:00Z","snapshotId":"686aace45f00dc2b227010f5","status":"COMPLETED","targetDeploymentItemName":"cluster-341-1a07752ffd0","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T15:50:29Z","id":"6870de6562d39f5826bd8309","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T09:51:28Z","restoreScheduledDate":"2025-07-11T09:50:29Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-611-a1fb3419417","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T15:49:26Z","id":"6870de2662d39f5826bd8203","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T09:50:27Z","restoreScheduledDate":"2025-07-11T09:49:26Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-611-a1fb3419417","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T14:47:20Z","id":"6870cf981eac23779588fdd9","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T08:48:18Z","restoreScheduledDate":"2025-07-11T08:47:20Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-702-635806fd69a","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T14:46:25Z","id":"6870cf611eac23779588fd1f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T08:47:18Z","restoreScheduledDate":"2025-07-11T08:46:25Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-702-635806fd69a","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T11:11:03Z","id":"68709ce7d1742264a624c857","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T05:11:59Z","restoreScheduledDate":"2025-07-11T05:11:03Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-579","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-11T11:10:03Z","id":"68709cabe3d03d13150a389d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-11T05:11:00Z","restoreScheduledDate":"2025-07-11T05:10:03Z","snapshotFinishedDate":"2025-07-03T17:06:41Z","snapshotId":"6866b8529bc0d02902dde7cc","status":"COMPLETED","targetDeploymentItemName":"cluster-579","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-10T11:11:43Z","id":"686f4b8f2f08ee49a6d9a925","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-10T05:12:37Z","restoreScheduledDate":"2025-07-10T05:11:43Z","snapshotFinishedDate":"2025-07-02T17:06:55Z","snapshotId":"686566e027d9b543213cab95","status":"COMPLETED","targetDeploymentItemName":"cluster-116","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-10T11:10:42Z","id":"686f4b529ae0b11dc199339e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-10T05:11:38Z","restoreScheduledDate":"2025-07-10T05:10:42Z","snapshotFinishedDate":"2025-07-02T17:06:55Z","snapshotId":"686566e027d9b543213cab95","status":"COMPLETED","targetDeploymentItemName":"cluster-116","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-09T11:11:47Z","id":"686dfa136daa3f5fb4261aad","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-09T05:12:46Z","restoreScheduledDate":"2025-07-09T05:11:47Z","snapshotFinishedDate":"2025-07-01T17:06:59Z","snapshotId":"68641563dd616238e866fb63","status":"COMPLETED","targetDeploymentItemName":"cluster-515","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-09T11:10:42Z","id":"686df9d2e0c7c7513581a7c7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-09T05:11:43Z","restoreScheduledDate":"2025-07-09T05:10:42Z","snapshotFinishedDate":"2025-07-01T17:06:59Z","snapshotId":"68641563dd616238e866fb63","status":"COMPLETED","targetDeploymentItemName":"cluster-515","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:32:34Z","id":"686cf3c2d2acab03d63e95ba","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:33:37Z","restoreScheduledDate":"2025-07-08T10:32:34Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-9bd165e7c1b","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:31:35Z","id":"686cf38741ac4047bcc722e4","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:32:31Z","restoreScheduledDate":"2025-07-08T10:31:35Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-9bd165e7c1b","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:27:42Z","id":"686cf29e41ac4047bcc71c9c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:28:40Z","restoreScheduledDate":"2025-07-08T10:27:42Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-8017aa38606","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T16:26:47Z","id":"686cf267d2acab03d63e8b43","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T10:27:40Z","restoreScheduledDate":"2025-07-08T10:26:47Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-788-8017aa38606","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:42:57Z","id":"686ce82141ac4047bcc6889a","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:43:55Z","restoreScheduledDate":"2025-07-08T09:42:57Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-683-925de5ccf17","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:41:59Z","id":"686ce7e7d2acab03d63df7ed","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:42:55Z","restoreScheduledDate":"2025-07-08T09:41:59Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-683-925de5ccf17","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:41:21Z","id":"686ce7c141ac4047bcc6852b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:42:22Z","restoreScheduledDate":"2025-07-08T09:41:21Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-157-b1380afc6ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T15:40:22Z","id":"686ce78641ac4047bcc6836f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T09:41:18Z","restoreScheduledDate":"2025-07-08T09:40:22Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-157-b1380afc6ce","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T11:10:17Z","id":"686ca83984ed3a711cd1f225","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T05:11:16Z","restoreScheduledDate":"2025-07-08T05:10:17Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-764","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-08T11:09:13Z","id":"686ca7f94db8053b7bc2dda9","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-08T05:10:12Z","restoreScheduledDate":"2025-07-08T05:09:13Z","snapshotFinishedDate":"2025-06-30T17:07:11Z","snapshotId":"6862c3ee865fff27b5a944ae","status":"COMPLETED","targetDeploymentItemName":"cluster-764","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-07T11:10:50Z","id":"686b56da6e2ab3585df8d28d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-07T05:11:51Z","restoreScheduledDate":"2025-07-07T05:10:50Z","snapshotFinishedDate":"2025-06-29T17:07:06Z","snapshotId":"6861726b4c35572b1ce88315","status":"COMPLETED","targetDeploymentItemName":"cluster-308","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-07T11:09:51Z","id":"686b569f6e2ab3585df8cba8","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-07T05:10:46Z","restoreScheduledDate":"2025-07-07T05:09:51Z","snapshotFinishedDate":"2025-06-29T17:07:06Z","snapshotId":"6861726b4c35572b1ce88315","status":"COMPLETED","targetDeploymentItemName":"cluster-308","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T22:01:51Z","id":"6867faef3d1f2501ea61e3bb","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T16:02:51Z","restoreScheduledDate":"2025-07-04T16:01:51Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-14-4b8c1b89d114","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T22:00:52Z","id":"6867fab43d1f2501ea61e23d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T16:01:48Z","restoreScheduledDate":"2025-07-04T16:00:52Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-14-4b8c1b89d114","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T21:10:10Z","id":"6867eed2973ae75fe39fec75","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T15:11:11Z","restoreScheduledDate":"2025-07-04T15:10:10Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-287-a2cb3d988ea","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T21:09:07Z","id":"6867ee933d1f2501ea6172b0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T15:10:07Z","restoreScheduledDate":"2025-07-04T15:09:07Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-287-a2cb3d988ea","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T16:48:14Z","id":"6867b16e6a7e8d43d6e84c0f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T10:49:11Z","restoreScheduledDate":"2025-07-04T10:48:14Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-155-d713a658e69","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T16:47:12Z","id":"6867b130c72bc06a4a741b2b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T10:48:10Z","restoreScheduledDate":"2025-07-04T10:47:12Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-155-d713a658e69","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T11:11:26Z","id":"6867627ec28b745042e7b953","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T05:12:23Z","restoreScheduledDate":"2025-07-04T05:11:26Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-160","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-04T11:10:26Z","id":"68676242c28b745042e7b6d7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-04T05:11:24Z","restoreScheduledDate":"2025-07-04T05:10:26Z","snapshotFinishedDate":"2025-06-26T17:07:12Z","snapshotId":"685d7df237422a427ef61268","status":"COMPLETED","targetDeploymentItemName":"cluster-160","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T17:45:01Z","id":"68666d3dcdfca51b007ca62c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T11:45:55Z","restoreScheduledDate":"2025-07-03T11:45:01Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-85-1a8e42d4df81","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T17:44:02Z","id":"68666d02cdfca51b007c9e10","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T11:44:59Z","restoreScheduledDate":"2025-07-03T11:44:02Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-85-1a8e42d4df81","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:24:20Z","id":"68663e34cdfca51b007b6407","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:25:41Z","restoreScheduledDate":"2025-07-03T08:24:20Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-847-da7b832de3d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:57Z","id":"68663de1574a2a1521cb463e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:36Z","restoreScheduledDate":"2025-07-03T08:22:57Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-910-51ffe20bdd4","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:55Z","id":"68663ddf574a2a1521cb4606","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:25:23Z","restoreScheduledDate":"2025-07-03T08:22:55Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-619-b0d772daa62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:22:54Z","id":"68663dde574a2a1521cb45de","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:38Z","restoreScheduledDate":"2025-07-03T08:22:54Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-512-b7a5d812b61","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:06Z","id":"68663d72cdfca51b007b55a7","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:24:17Z","restoreScheduledDate":"2025-07-03T08:21:06Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-847-da7b832de3d","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:05Z","id":"68663d71cdfca51b007b5579","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:53Z","restoreScheduledDate":"2025-07-03T08:21:05Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-910-51ffe20bdd4","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:21:03Z","id":"68663d6fcdfca51b007b553b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:54Z","restoreScheduledDate":"2025-07-03T08:21:03Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-619-b0d772daa62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T14:20:58Z","id":"68663d6a574a2a1521cb3b2f","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T08:22:51Z","restoreScheduledDate":"2025-07-03T08:20:58Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-512-b7a5d812b61","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T11:12:36Z","id":"68661144e5d7337cdb5fd169","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T05:13:35Z","restoreScheduledDate":"2025-07-03T05:12:36Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-618","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-03T11:11:32Z","id":"68661104ffcdb760c6bf9d89","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-03T05:12:34Z","restoreScheduledDate":"2025-07-03T05:11:32Z","snapshotFinishedDate":"2025-06-25T17:06:27Z","snapshotId":"685c2c4737d1f1015b065bb8","status":"COMPLETED","targetDeploymentItemName":"cluster-618","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-02T11:11:48Z","id":"6864bf9468b5054fe398c346","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-02T05:12:50Z","restoreScheduledDate":"2025-07-02T05:11:48Z","snapshotFinishedDate":"2025-06-24T17:07:02Z","snapshotId":"685adae68d6db4789f28abc8","status":"COMPLETED","targetDeploymentItemName":"cluster-231","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-02T11:10:41Z","id":"6864bf5173cdb372a930db23","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-02T05:11:44Z","restoreScheduledDate":"2025-07-02T05:10:41Z","snapshotFinishedDate":"2025-06-24T17:07:02Z","snapshotId":"685adae68d6db4789f28abc8","status":"COMPLETED","targetDeploymentItemName":"cluster-231","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T19:00:55Z","id":"6863dc079b4dc16ccf474815","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T13:01:53Z","restoreScheduledDate":"2025-07-01T13:00:55Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-21-974928daaeb2","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T18:59:52Z","id":"6863dbc89b4dc16ccf474575","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T13:00:53Z","restoreScheduledDate":"2025-07-01T12:59:52Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-21-974928daaeb2","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:57:12Z","id":"6863bf08f081bb022eaa3277","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:58:34Z","restoreScheduledDate":"2025-07-01T10:57:12Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-880-bd02ce6eb62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:56:59Z","id":"6863befb20fd844df3772262","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:58:22Z","restoreScheduledDate":"2025-07-01T10:56:59Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-970-9a27ba21f0c","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:56:35Z","id":"6863bee320fd844df377200e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:57:54Z","restoreScheduledDate":"2025-07-01T10:56:35Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-996-c8d46012a2e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:32Z","id":"6863bea420fd844df3771cde","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:57:08Z","restoreScheduledDate":"2025-07-01T10:55:32Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-880-bd02ce6eb62","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:24Z","id":"6863be9cf081bb022eaa2db0","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:56:56Z","restoreScheduledDate":"2025-07-01T10:55:24Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-970-9a27ba21f0c","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T16:55:08Z","id":"6863be8c20fd844df3771a34","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T10:56:31Z","restoreScheduledDate":"2025-07-01T10:55:08Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-996-c8d46012a2e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T11:11:49Z","id":"68636e1590ed24487dfc30a3","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T05:12:51Z","restoreScheduledDate":"2025-07-01T05:11:49Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-674","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-07-01T11:10:49Z","id":"68636dd990ed24487dfc2b2e","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-01T05:11:47Z","restoreScheduledDate":"2025-07-01T05:10:49Z","snapshotFinishedDate":"2025-06-23T17:07:17Z","snapshotId":"685989771c1d8700a0656c40","status":"COMPLETED","targetDeploymentItemName":"cluster-674","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T19:16:16Z","id":"68628e2054262f52217bafcc","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T13:17:14Z","restoreScheduledDate":"2025-06-30T13:16:16Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-631-39c8d671cca","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T19:15:18Z","id":"68628de654262f52217bad9c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T13:16:12Z","restoreScheduledDate":"2025-06-30T13:15:18Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-631-39c8d671cca","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T15:32:00Z","id":"68625990b061b0401a4c4e56","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T09:32:55Z","restoreScheduledDate":"2025-06-30T09:32:00Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-520-8b0b4005e9e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T15:31:01Z","id":"68625955b061b0401a4c4b74","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T09:31:55Z","restoreScheduledDate":"2025-06-30T09:31:01Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-520-8b0b4005e9e","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T11:10:16Z","id":"68621c380fdc646bf5f3b5b3","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T05:11:10Z","restoreScheduledDate":"2025-06-30T05:10:16Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-774","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-30T11:09:17Z","id":"68621bfdb061b0401a4bf749","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-30T05:10:13Z","restoreScheduledDate":"2025-06-30T05:09:17Z","snapshotFinishedDate":"2025-06-22T17:07:08Z","snapshotId":"685837ef8aaf92008d0a10ea","status":"COMPLETED","targetDeploymentItemName":"cluster-774","targetProjectId":"b0123456789abcdef012345b"},{"deliveryType":"RESTORE","expirationDate":"2025-06-27T23:01:57Z","id":"685ece858e92da1dfb4e200c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-06-27T17:02:56Z","restoreScheduledDate":"2025-06-27T17:01:57Z","snapshotFinishedDate":"2025-06-19T17:07:07Z","snapshotId":"6854436e43ddd6572ad1cbb6","status":"COMPLETED","targetDeploymentItemName":"cluster-233-62e09263ea5","targetProjectId":"b0123456789abcdef012345b"}],"totalCount":972} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost deleted file mode 100644 index e257c457f6..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 401 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:24 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"PENDING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_2.snaphost deleted file mode 100644 index cf27959757..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 401 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:33 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"RUNNING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_3.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_3.snaphost deleted file mode 100644 index f0df883bf7..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1d7c44f1ab3f842312bf_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 448 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 109 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:11:24Z","id":"687f1d7c44f1ab3f842312bf","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:12:26Z","restoreScheduledDate":"2025-07-22T05:11:24Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost new file mode 100644 index 0000000000..380a71b5e7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 401 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:05:21Z","id":"68824bb1b44898105334602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-24T15:05:21Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"RUNNING","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_2.snaphost new file mode 100644 index 0000000000..d39c556602 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bb1b44898105334602d_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 448 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:05:21Z","id":"68824bb1b44898105334602d","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T15:06:19Z","restoreScheduledDate":"2025-07-24T15:05:21Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_1.snaphost deleted file mode 100644 index 9dd060f7a0..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 401 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:12:28Z","id":"687f1dbc44f1ab3f84231a7b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:12:28Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"PENDING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_2.snaphost deleted file mode 100644 index 814975574e..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 401 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:37 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:12:28Z","id":"687f1dbc44f1ab3f84231a7b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-22T05:12:28Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"RUNNING","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_3.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_3.snaphost deleted file mode 100644 index d981a3f450..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_687f1dbc44f1ab3f84231a7b_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 448 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:31 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"deliveryType":"RESTORE","expirationDate":"2025-07-22T11:12:28Z","id":"687f1dbc44f1ab3f84231a7b","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-22T05:13:27Z","restoreScheduledDate":"2025-07-22T05:12:28Z","snapshotFinishedDate":"2025-07-14T17:07:27Z","snapshotId":"687538ffe90aa529bdfee337","status":"COMPLETED","targetDeploymentItemName":"cluster-743","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_1.snaphost new file mode 100644 index 0000000000..74aa140559 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 401 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 98 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:06:24Z","id":"68824bf0b44898105334664c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-24T15:06:24Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"PENDING","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_2.snaphost new file mode 100644 index 0000000000..11e462c49d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 401 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:06:24Z","id":"68824bf0b44898105334664c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreScheduledDate":"2025-07-24T15:06:24Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"RUNNING","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_3.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_3.snaphost new file mode 100644 index 0000000000..e0ec931a8a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Restores_Watch_-_Download/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_restoreJobs_68824bf0b44898105334664c_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 448 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"deliveryType":"RESTORE","expirationDate":"2025-07-24T21:06:24Z","id":"68824bf0b44898105334664c","instanceName":"test-flex","projectId":"b0123456789abcdef012345b","restoreFinishedDate":"2025-07-24T15:07:24Z","restoreScheduledDate":"2025-07-24T15:06:24Z","snapshotFinishedDate":"2025-07-16T17:07:23Z","snapshotId":"6877dbfa11d6fd68785b443e","status":"COMPLETED","targetDeploymentItemName":"cluster-243","targetProjectId":"b0123456789abcdef012345b"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost deleted file mode 100644 index 31a5c54858..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 226 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"expiration":"2025-07-22T17:05:10Z","finishTime":"2025-07-14T17:07:27Z","id":"687538ffe90aa529bdfee337","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-14T17:05:10Z","startTime":"2025-07-14T17:06:13Z","status":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost new file mode 100644 index 0000000000..b0e3301608 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 226 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"expiration":"2025-07-24T17:05:10Z","finishTime":"2025-07-16T17:07:23Z","id":"6877dbfa11d6fd68785b443e","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-16T17:05:10Z","startTime":"2025-07-16T17:06:08Z","status":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_1.snaphost index 730cd56d27..c5c59b0a62 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 2030 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT +Date: Thu, 24 Jul 2025 15:05:19 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 +X-Envoy-Upstream-Service-Time: 126 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexBackupResource::getSnapshots X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/snapshots?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"expiration":"2025-07-22T17:05:10Z","finishTime":"2025-07-14T17:07:27Z","id":"687538ffe90aa529bdfee337","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-14T17:05:10Z","startTime":"2025-07-14T17:06:13Z","status":"COMPLETED"},{"expiration":"2025-07-23T17:05:10Z","finishTime":"2025-07-15T17:06:42Z","id":"68768a52252e3b4f56c7de3d","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-15T17:05:10Z","startTime":"2025-07-15T17:05:28Z","status":"COMPLETED"},{"expiration":"2025-07-24T17:05:10Z","finishTime":"2025-07-16T17:07:23Z","id":"6877dbfa11d6fd68785b443e","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-16T17:05:10Z","startTime":"2025-07-16T17:06:08Z","status":"COMPLETED"},{"expiration":"2025-07-25T17:05:10Z","finishTime":"2025-07-17T17:06:32Z","id":"68792d4825ef6d621ad12fb9","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-17T17:05:10Z","startTime":"2025-07-17T17:05:18Z","status":"COMPLETED"},{"expiration":"2025-07-26T17:05:10Z","finishTime":"2025-07-18T17:06:52Z","id":"687a7edb9a45fb27184645ec","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-18T17:05:10Z","startTime":"2025-07-18T17:05:38Z","status":"COMPLETED"},{"expiration":"2025-07-27T17:05:10Z","finishTime":"2025-07-19T17:07:01Z","id":"687bd06667a18a0c1d1e359a","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-19T17:05:10Z","startTime":"2025-07-19T17:05:48Z","status":"COMPLETED"},{"expiration":"2025-07-28T17:05:10Z","finishTime":"2025-07-20T17:07:02Z","id":"687d21e667a18a0c1d3f8a53","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-20T17:05:10Z","startTime":"2025-07-20T17:05:48Z","status":"COMPLETED"},{"expiration":"2025-07-29T17:05:10Z","finishTime":"2025-07-21T17:07:08Z","id":"687e736b5518b6593b818fac","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-21T17:05:10Z","startTime":"2025-07-21T17:05:54Z","status":"COMPLETED"}],"totalCount":8} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters/test-flex/backup/snapshots?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"expiration":"2025-07-24T17:05:10Z","finishTime":"2025-07-16T17:07:23Z","id":"6877dbfa11d6fd68785b443e","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-16T17:05:10Z","startTime":"2025-07-16T17:06:08Z","status":"COMPLETED"},{"expiration":"2025-07-25T17:05:10Z","finishTime":"2025-07-17T17:06:32Z","id":"68792d4825ef6d621ad12fb9","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-17T17:05:10Z","startTime":"2025-07-17T17:05:18Z","status":"COMPLETED"},{"expiration":"2025-07-26T17:05:10Z","finishTime":"2025-07-18T17:06:52Z","id":"687a7edb9a45fb27184645ec","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-18T17:05:10Z","startTime":"2025-07-18T17:05:38Z","status":"COMPLETED"},{"expiration":"2025-07-27T17:05:10Z","finishTime":"2025-07-19T17:07:01Z","id":"687bd06667a18a0c1d1e359a","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-19T17:05:10Z","startTime":"2025-07-19T17:05:48Z","status":"COMPLETED"},{"expiration":"2025-07-28T17:05:10Z","finishTime":"2025-07-20T17:07:02Z","id":"687d21e667a18a0c1d3f8a53","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-20T17:05:10Z","startTime":"2025-07-20T17:05:48Z","status":"COMPLETED"},{"expiration":"2025-07-29T17:05:10Z","finishTime":"2025-07-21T17:07:08Z","id":"687e736b5518b6593b818fac","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-21T17:05:10Z","startTime":"2025-07-21T17:05:54Z","status":"COMPLETED"},{"expiration":"2025-07-30T17:05:10Z","finishTime":"2025-07-22T17:07:09Z","id":"687fc4ed9e0a162614009289","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-22T17:05:10Z","startTime":"2025-07-22T17:05:55Z","status":"COMPLETED"},{"expiration":"2025-07-31T17:05:10Z","finishTime":"2025-07-23T17:06:55Z","id":"6881165f5381e74340e4b3d6","mongoDBVersion":"8.0.12","scheduledTime":"2025-07-23T17:05:10Z","startTime":"2025-07-23T17:05:42Z","status":"COMPLETED"}],"totalCount":8} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost deleted file mode 100644 index 88c0d4c30e..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_687538ffe90aa529bdfee337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 226 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"expiration":"2025-07-22T17:05:10Z","finishTime":"2025-07-14T17:07:27Z","id":"687538ffe90aa529bdfee337","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-14T17:05:10Z","startTime":"2025-07-14T17:06:13Z","status":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost new file mode 100644 index 0000000000..eed2211c45 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/Snapshot_Watch/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_test-flex_backup_snapshots_6877dbfa11d6fd68785b443e_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 226 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"expiration":"2025-07-24T17:05:10Z","finishTime":"2025-07-16T17:07:23Z","id":"6877dbfa11d6fd68785b443e","mongoDBVersion":"8.0.11","scheduledTime":"2025-07-16T17:05:10Z","startTime":"2025-07-16T17:06:08Z","status":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexBackup/memory.json b/test/e2e/testdata/.snapshots/TestFlexBackup/memory.json index c9bdf8e203..b7521b56f5 100644 --- a/test/e2e/testdata/.snapshots/TestFlexBackup/memory.json +++ b/test/e2e/testdata/.snapshots/TestFlexBackup/memory.json @@ -1 +1 @@ -{"TestFlexBackup/generateFlexClusterName":"cluster-743"} \ No newline at end of file +{"TestFlexBackup/generateFlexClusterName":"cluster-243"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Create_flex_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Create_flex_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost index b3ecc268f4..b10fcdf89e 100644 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Create_flex_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Create_flex_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 439 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:18 GMT +Date: Thu, 24 Jul 2025 15:05:23 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 663 +X-Envoy-Upstream-Service-Time: 574 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexClusterResource::createFlexCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:19Z","groupId":"b0123456789abcdef012345b","id":"687f1d7744f1ab3f8423117f","mongoDBVersion":"8.0.12","name":"cluster-260","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:24Z","groupId":"b0123456789abcdef012345b","id":"68824bb4b448981053346090","mongoDBVersion":"8.0.12","name":"cluster-144","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost new file mode 100644 index 0000000000..6c5ad33273 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 189 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 93 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Flex cluster cluster-144 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-144"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost deleted file mode 100644 index a95e701e69..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 189 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Flex cluster cluster-260 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-260"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost new file mode 100644 index 0000000000..bbe22a2a36 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 306 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost deleted file mode 100644 index 31d22ed1d6..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 438 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost new file mode 100644 index 0000000000..493164196d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 449 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 99 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:24Z","groupId":"b0123456789abcdef012345b","id":"68824bb4b448981053346090","mongoDBVersion":"8.0.12","name":"cluster-144","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_2.snaphost new file mode 100644 index 0000000000..240dcf16fa --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-144 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-144","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost deleted file mode 100644 index 95b4ffa283..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 449 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:19Z","groupId":"b0123456789abcdef012345b","id":"687f1d7744f1ab3f8423117f","mongoDBVersion":"8.0.12","name":"cluster-260","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_2.snaphost deleted file mode 100644 index 7789e7267b..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Delete_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-260 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-260","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost new file mode 100644 index 0000000000..955171ba34 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-144_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 400 Bad Request +Content-Length: 189 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:24 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Flex cluster cluster-144 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-144"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost deleted file mode 100644 index 7f8cfc9079..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-260_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 189 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:19 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 122 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Flex cluster cluster-260 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-260"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost new file mode 100644 index 0000000000..8ab352c2c1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-144_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 449 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:24Z","groupId":"b0123456789abcdef012345b","id":"68824bb4b448981053346090","mongoDBVersion":"8.0.12","name":"cluster-144","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost deleted file mode 100644 index c20c17fb4c..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/Get_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-260_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 449 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 113 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:19Z","groupId":"b0123456789abcdef012345b","id":"687f1d7744f1ab3f8423117f","mongoDBVersion":"8.0.12","name":"cluster-260","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/List_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexCluster/List_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost index 4834752e8b..052efbac7a 100644 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/List_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/List_flex_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 2150 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT +Date: Thu, 24 Jul 2025 15:05:25 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 240 +X-Envoy-Upstream-Service-Time: 197 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexClusterResource::getAllFlexClusters X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-gowfoy8-shard-00-00.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-01.6tztqah.mongodb-dev.net:27017,ac-gowfoy8-shard-00-02.6tztqah.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-yb8v8s-shard-0","standardSrv":"mongodb+srv://cluster-743.6tztqah.mongodb-dev.net"},"createDate":"2025-07-22T05:11:08Z","groupId":"b0123456789abcdef012345b","id":"687f1d6c44f1ab3f84230f06","mongoDBVersion":"8.0.12","name":"cluster-743","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-bcmsulp-shard-00-00.gm5almn.mongodb-dev.net:27017,ac-bcmsulp-shard-00-01.gm5almn.mongodb-dev.net:27017,ac-bcmsulp-shard-00-02.gm5almn.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-zgihuc-shard-0","standardSrv":"mongodb+srv://donotdeleteusedfore2ete.gm5almn.mongodb-dev.net"},"createDate":"2024-12-19T17:05:10Z","groupId":"b0123456789abcdef012345b","id":"676452464e0c160700928953","mongoDBVersion":"8.0.12","name":"test-flex","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"},{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:19Z","groupId":"b0123456789abcdef012345b","id":"687f1d7744f1ab3f8423117f","mongoDBVersion":"8.0.12","name":"cluster-260","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"}],"totalCount":3} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/flexClusters?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-bcmsulp-shard-00-00.gm5almn.mongodb-dev.net:27017,ac-bcmsulp-shard-00-01.gm5almn.mongodb-dev.net:27017,ac-bcmsulp-shard-00-02.gm5almn.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-zgihuc-shard-0","standardSrv":"mongodb+srv://donotdeleteusedfore2ete.gm5almn.mongodb-dev.net"},"createDate":"2024-12-19T17:05:10Z","groupId":"b0123456789abcdef012345b","id":"676452464e0c160700928953","mongoDBVersion":"8.0.12","name":"test-flex","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":true,"versionReleaseSystem":"LTS"},{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-spppa4o-shard-00-00.ggvcow4.mongodb-dev.net:27017,ac-spppa4o-shard-00-01.ggvcow4.mongodb-dev.net:27017,ac-spppa4o-shard-00-02.ggvcow4.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-9tx39n-shard-0","standardSrv":"mongodb+srv://cluster-243.ggvcow4.mongodb-dev.net"},"createDate":"2025-07-24T15:05:05Z","groupId":"b0123456789abcdef012345b","id":"68824ba142be0f23307f37e4","mongoDBVersion":"8.0.12","name":"cluster-243","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:24Z","groupId":"b0123456789abcdef012345b","id":"68824bb4b448981053346090","mongoDBVersion":"8.0.12","name":"cluster-144","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexCluster/memory.json b/test/e2e/testdata/.snapshots/TestFlexCluster/memory.json index 91c7b28941..d0e7d2fc9e 100644 --- a/test/e2e/testdata/.snapshots/TestFlexCluster/memory.json +++ b/test/e2e/testdata/.snapshots/TestFlexCluster/memory.json @@ -1 +1 @@ -{"TestFlexCluster/flexClusterName":"cluster-260"} \ No newline at end of file +{"TestFlexCluster/flexClusterName":"cluster-144"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Create_Flex_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Create_Flex_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost index ac62eae786..1ae85dc3d0 100644 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Create_Flex_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Create_Flex_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 481 Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:41 GMT +Date: Thu, 24 Jul 2025 15:05:47 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1170 +X-Envoy-Upstream-Service-Time: 1552 X-Frame-Options: DENY X-Java-Method: ApiAtlasFlexClusterResource::createFlexCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:41Z","groupId":"b0123456789abcdef012345b","id":"687f1d8d44f1ab3f842315f0","mongoDBVersion":"8.0.12","name":"cluster-725","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:47Z","groupId":"b0123456789abcdef012345b","id":"68824bcb42be0f23307f3dc1","mongoDBVersion":"8.0.12","name":"cluster-572","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-572_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-572_1.snaphost new file mode 100644 index 0000000000..5fc428fc80 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-572_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 189 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Flex cluster cluster-572 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-572"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-725_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-725_1.snaphost deleted file mode 100644 index 239523f879..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-725_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 189 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 154 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Flex cluster cluster-725 cannot be used in the Cluster API.","error":400,"errorCode":"CANNOT_USE_FLEX_CLUSTER_IN_CLUSTER_API","parameters":["cluster-725"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost new file mode 100644 index 0000000000..d3b4af560e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 406 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost deleted file mode 100644 index d57f3b0a5a..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 432 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::deleteFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost new file mode 100644 index 0000000000..3862d5d027 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 449 +Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:47Z","groupId":"b0123456789abcdef012345b","id":"68824bcb42be0f23307f3dc1","mongoDBVersion":"8.0.12","name":"cluster-572","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_2.snaphost new file mode 100644 index 0000000000..4722834831 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-572_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 85 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-572 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-572","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost deleted file mode 100644 index 67411cb5db..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 449 -Content-Type: application/vnd.atlas.2024-11-13+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupSettings":{"enabled":true},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:41Z","groupId":"b0123456789abcdef012345b","id":"687f1d8d44f1ab3f842315f0","mongoDBVersion":"8.0.12","name":"cluster-725","providerSettings":{"backingProviderName":"AWS","diskSizeGB":5.0,"providerName":"FLEX","regionName":"US_EAST_1"},"stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_2.snaphost b/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_2.snaphost deleted file mode 100644 index f2dc2e2a58..0000000000 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/Delete_Flex_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-725_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:05 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 91 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexClusterResource::getFlexCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-725 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-725","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestFlexClustersFile/memory.json b/test/e2e/testdata/.snapshots/TestFlexClustersFile/memory.json index 6b26e58a75..a91fb14831 100644 --- a/test/e2e/testdata/.snapshots/TestFlexClustersFile/memory.json +++ b/test/e2e/testdata/.snapshots/TestFlexClustersFile/memory.json @@ -1 +1 @@ -{"TestFlexClustersFile/clusterFileName":"cluster-725"} \ No newline at end of file +{"TestFlexClustersFile/clusterFileName":"cluster-572"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Create_ISS_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Create_ISS_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost index 192be2f21b..6e374679c2 100644 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Create_ISS_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Create_ISS_Cluster_via_file/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 2671 Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:22:20 GMT +Date: Thu, 24 Jul 2025 15:17:02 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1555 +X-Envoy-Upstream-Service-Time: 1769 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionResource20241023::createCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..96aee8abaa --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 758 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index 0d62e8693b..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 421 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..189f41d9f2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3069 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 132 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost new file mode 100644 index 0000000000..c72da9e0b7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:31:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-311 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-311","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index 8246599edc..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3069 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 140 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost deleted file mode 100644 index 971f3f5339..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Delete_ISS_Cluster_-_created_via_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:37:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-337 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-337","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..f75d7bffd4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 47 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:04 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 92 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 1e984d2485..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 47 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:22:22 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..926d1ef235 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3099 +Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:28:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 724 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":true,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index 1ac09ad6b8..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Pause_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3099 -Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 747 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":true,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..2e63ddaef5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3100 +Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:28:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 694 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index db50cab010..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3100 -Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 601 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..640061a539 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3100 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 134 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index e987150aae..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3100 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 128 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..c942ac568f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3100 +Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 858 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index f1f5bd4e75..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Update_ISS_cluster_with_file/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3100 -Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 872 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M30","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost new file mode 100644 index 0000000000..11e575f944 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1951 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:05 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 134 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:17:03Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff4","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost new file mode 100644 index 0000000000..c0858adf67 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2671 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_3.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_3.snaphost new file mode 100644 index 0000000000..4bbedde6a1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-311_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3096 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:28:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 148 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-311-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-311-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-311.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:17:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824e6f42be0f23307f5036","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-311/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-311","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e6f42be0f23307f4ff5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"},{"id":"68824e6f42be0f23307f4ff7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"68824e6f42be0f23307f4ff3","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost deleted file mode 100644 index 7bdb6df622..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1951 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:22:22 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:22:21Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b1","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost deleted file mode 100644 index f4d45c3285..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2671 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:22:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_3.snaphost b/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_3.snaphost deleted file mode 100644 index 0b6f56082a..0000000000 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/Watch_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-337_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3096 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 125 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-337-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-337-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-337.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:22:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f200da799aa2ae9e816f3","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-337/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-337","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f200ca799aa2ae9e816b2","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"},{"id":"687f200ca799aa2ae9e816b4","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"EU_WEST_1"}],"zoneId":"687f200ca799aa2ae9e816b0","zoneName":"Zone1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"e2e_test","value":"yes"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestISSClustersFile/memory.json b/test/e2e/testdata/.snapshots/TestISSClustersFile/memory.json index a0f8e8999e..1bbf574220 100644 --- a/test/e2e/testdata/.snapshots/TestISSClustersFile/memory.json +++ b/test/e2e/testdata/.snapshots/TestISSClustersFile/memory.json @@ -1 +1 @@ -{"TestISSClustersFile/clusterIssFileName":"cluster-337"} \ No newline at end of file +{"TestISSClustersFile/clusterIssFileName":"cluster-311"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 31584f36a5..f6f4feb387 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 251 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:16 GMT +Date: Thu, 24 Jul 2025 15:05:39 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 78 +X-Envoy-Upstream-Service-Time: 63 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1daf44f1ab3f84231a36"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc2b448981053346166"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index c8fdf549cd..31231c2350 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 278 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:17 GMT +Date: Thu, 24 Jul 2025 15:05:39 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 +X-Envoy-Upstream-Service-Time: 113 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1db044f1ab3f84231a39","687f1daf44f1ab3f84231a36"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc3b4489810533461c8","68824bc2b448981053346166"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 3824aaf3b6..e4c6f8a61a 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 225 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:15 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 90 +X-Envoy-Upstream-Service-Time: 80 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"dataAccessIdentityProviderIds":[],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 1a958768c8..00f827edbe 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Connect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 251 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:15 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 138 +X-Envoy-Upstream-Service-Time: 114 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1daf44f1ab3f84231a36"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc2b448981053346166"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKFORCE/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKFORCE/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost index d71428af5b..5bcedc343a 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKFORCE/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKFORCE/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 446 Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:16 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 +X-Envoy-Upstream-Service-Time: 81 X-Frame-Options: DENY X-Java-Method: ApiFederationSettingsResource::createIdentityProvider X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-889","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-22T05:12:16Z","description":"CLI TEST Provider","displayName":"idp-889","groupsClaim":"groups","id":"687f1db044f1ab3f84231a39","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file +{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-737","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-24T15:05:39Z","description":"CLI TEST Provider","displayName":"idp-737","groupsClaim":"groups","id":"68824bc3b4489810533461c8","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKLOAD/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKLOAD/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost index 14073588a2..e492ca2d7e 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKLOAD/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Create_OIDC_IdP_WORKLOAD/POST_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 350 +Content-Length: 352 Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:15 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 +X-Envoy-Upstream-Service-Time: 96 X-Frame-Options: DENY X-Java-Method: ApiFederationSettingsResource::createIdentityProvider X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"associatedOrgs":[],"audience":"idp-97","authorizationType":"GROUP","createdAt":"2025-07-22T05:12:15Z","description":"CLI TEST Provider","displayName":"idp-97","groupsClaim":"groups","id":"687f1daf44f1ab3f84231a36","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"} \ No newline at end of file +{"associatedOrgs":[],"audience":"idp-173","authorizationType":"GROUP","createdAt":"2025-07-24T15:05:38Z","description":"CLI TEST Provider","displayName":"idp-173","groupsClaim":"groups","id":"68824bc2b448981053346166","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_1.snaphost deleted file mode 100644 index f84ad8da99..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 63 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::deleteIdentityProvider -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_jwks_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_jwks_1.snaphost deleted file mode 100644 index 72407b2f64..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1daf44f1ab3f84231a36_jwks_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:22 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 49 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::revokeJwksFromIdentityProvider -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost deleted file mode 100644 index e7f706d826..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 58 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::deleteIdentityProvider -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_jwks_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_jwks_1.snaphost deleted file mode 100644 index 1bdc020751..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_jwks_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 51 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::revokeJwksFromIdentityProvider -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_1.snaphost new file mode 100644 index 0000000000..98b0b26add --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 68 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::deleteIdentityProvider +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_jwks_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_jwks_1.snaphost new file mode 100644 index 0000000000..656aa1f66c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc2b448981053346166_jwks_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 51 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::revokeJwksFromIdentityProvider +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost new file mode 100644 index 0000000000..463c75ca11 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 59 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::deleteIdentityProvider +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_jwks_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_jwks_1.snaphost new file mode 100644 index 0000000000..dccf9a1b81 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/DELETE_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_jwks_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 65 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::revokeJwksFromIdentityProvider +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost deleted file mode 100644 index 75ad77b183..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 446 -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 42 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::getIdentityProviderById -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-889","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-22T05:12:16Z","description":"CLI TEST Provider","displayName":"idp-889","groupsClaim":"groups","id":"687f1db044f1ab3f84231a39","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost new file mode 100644 index 0000000000..740c7715c3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE#01/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 446 +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 37 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::getIdentityProviderById +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-737","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-24T15:05:39Z","description":"CLI TEST Provider","displayName":"idp-737","groupsClaim":"groups","id":"68824bc3b4489810533461c8","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost deleted file mode 100644 index 4d699b3c9e..0000000000 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_687f1db044f1ab3f84231a39_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 446 -Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 40 -X-Frame-Options: DENY -X-Java-Method: ApiFederationSettingsResource::getIdentityProviderById -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-889","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-22T05:12:16Z","description":"CLI TEST Provider","displayName":"idp-889","groupsClaim":"groups","id":"687f1db044f1ab3f84231a39","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost new file mode 100644 index 0000000000..0b7a20db5c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_68824bc3b4489810533461c8_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 446 +Content-Type: application/vnd.atlas.2023-11-15+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 29 +X-Frame-Options: DENY +X-Java-Method: ApiFederationSettingsResource::getIdentityProviderById +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-737","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-24T15:05:39Z","description":"CLI TEST Provider","displayName":"idp-737","groupsClaim":"groups","id":"68824bc3b4489810533461c8","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_an_org_federation_settings/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_federationSettings_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_an_org_federation_settings/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_federationSettings_1.snaphost index 41561ec41a..3a0669a245 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_an_org_federation_settings/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_federationSettings_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_an_org_federation_settings/GET_api_atlas_v2_orgs_a0123456789abcdef012345a_federationSettings_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 141 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:14 GMT +Date: Thu, 24 Jul 2025 15:05:38 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 46 +X-Envoy-Upstream-Service-Time: 66 X-Frame-Options: DENY X-Java-Method: ApiOrganizationsResource::getFederationSettings X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"federatedDomains":[],"hasRoleMappings":false,"id":"656e4d8e91cb7d26db1bc9c6","identityProviderId":null,"identityProviderStatus":"INACTIVE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index b27c67f46a..db1d95a270 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Describe_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 278 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:17 GMT +Date: Thu, 24 Jul 2025 15:05:39 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 59 +X-Envoy-Upstream-Service-Time: 65 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1db044f1ab3f84231a39","687f1daf44f1ab3f84231a36"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc3b4489810533461c8","68824bc2b448981053346166"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 16c0ba83f4..dc325e8027 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 251 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:18 GMT +Date: Thu, 24 Jul 2025 15:05:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 80 +X-Envoy-Upstream-Service-Time: 76 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1db044f1ab3f84231a39"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc3b4489810533461c8"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 4b877879c9..4e39ccad80 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKFORCE/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 225 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:18 GMT +Date: Thu, 24 Jul 2025 15:05:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 +X-Envoy-Upstream-Service-Time: 89 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"dataAccessIdentityProviderIds":[],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 13a372db98..81846a6e8b 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 278 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:17 GMT +Date: Thu, 24 Jul 2025 15:05:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 +X-Envoy-Upstream-Service-Time: 58 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1db044f1ab3f84231a39","687f1daf44f1ab3f84231a36"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc3b4489810533461c8","68824bc2b448981053346166"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 60d231d66c..45cc197aba 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Disconnect_OIDC_IdP_WORKLOAD/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 251 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:17 GMT +Date: Thu, 24 Jul 2025 15:05:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 +X-Envoy-Upstream-Service-Time: 102 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"dataAccessIdentityProviderIds":["687f1db044f1ab3f84231a39"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file +{"dataAccessIdentityProviderIds":["68824bc3b4489810533461c8"],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost index 656c569399..472fc776dd 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 665 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:19 GMT +Date: Thu, 24 Jul 2025 15:05:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 33 +X-Envoy-Upstream-Service-Time: 48 X-Frame-Options: DENY X-Java-Method: ApiFederationSettingsResource::getAllIdentityProviders X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/identityProviders?idpType=WORKFORCE&protocol=OIDC&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-889","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-22T05:12:16Z","description":"CLI TEST Provider","displayName":"idp-889","groupsClaim":"groups","id":"687f1db044f1ab3f84231a39","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"}],"totalCount":1} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/identityProviders?idpType=WORKFORCE&protocol=OIDC&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audience":"idp-737","authorizationType":"GROUP","clientId":"cliClients","createdAt":"2025-07-24T15:05:39Z","description":"CLI TEST Provider","displayName":"idp-737","groupsClaim":"groups","id":"68824bc3b4489810533461c8","idpType":"WORKFORCE","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","requestedScopes":[],"updatedAt":null,"userClaim":"user"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_2.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_2.snaphost index 5729c91fd6..0333b47383 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_2.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 2308 +Content-Length: 2310 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:20 GMT +Date: Thu, 24 Jul 2025 15:05:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 36 +X-Envoy-Upstream-Service-Time: 33 X-Frame-Options: DENY X-Java-Method: ApiFederationSettingsResource::getAllIdentityProviders X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/identityProviders?idpType=WORKLOAD&protocol=OIDC&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"associatedOrgs":[],"audience":"idp-597-ee4da25b6ad8d2813c535b1333a46280b1a06f30","authorizationType":"GROUP","createdAt":"2025-06-26T08:49:17Z","description":"CLI TEST Provider","displayName":"idp-597-ee4da25b6ad8d2813c535b1333a46280b1a06f30","groupsClaim":"groups","id":"685d098d27410c4e07cf1555","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-906-35c23ab3476f15dcba9d49a041ab7fee4498d4a7","authorizationType":"GROUP","createdAt":"2025-05-28T09:19:08Z","description":"CLI TEST Provider","displayName":"idp-906-35c23ab3476f15dcba9d49a041ab7fee4498d4a7","groupsClaim":"groups","id":"6836d50c215c6f39623c990a","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-983-2780a881e2e8f9b5addbde64c6e6c93ea33d7518","authorizationType":"GROUP","createdAt":"2025-06-26T08:49:17Z","description":"CLI TEST Provider","displayName":"idp-983-2780a881e2e8f9b5addbde64c6e6c93ea33d7518","groupsClaim":"groups","id":"685d098d27410c4e07cf1530","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-97","authorizationType":"GROUP","createdAt":"2025-07-22T05:12:15Z","description":"CLI TEST Provider","displayName":"idp-97","groupsClaim":"groups","id":"687f1daf44f1ab3f84231a36","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-195-96969c56155eeb7774e4596e6e3e65b5fc492e5d","authorizationType":"GROUP","createdAt":"2025-03-18T01:40:21Z","description":"CLI TEST Provider","displayName":"idp-195-96969c56155eeb7774e4596e6e3e65b5fc492e5d","groupsClaim":"groups","id":"67d8cf052f125539987fee8b","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"}],"totalCount":5} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/identityProviders?idpType=WORKLOAD&protocol=OIDC&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"associatedOrgs":[],"audience":"idp-195-96969c56155eeb7774e4596e6e3e65b5fc492e5d","authorizationType":"GROUP","createdAt":"2025-03-18T01:40:21Z","description":"CLI TEST Provider","displayName":"idp-195-96969c56155eeb7774e4596e6e3e65b5fc492e5d","groupsClaim":"groups","id":"67d8cf052f125539987fee8b","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-173","authorizationType":"GROUP","createdAt":"2025-07-24T15:05:38Z","description":"CLI TEST Provider","displayName":"idp-173","groupsClaim":"groups","id":"68824bc2b448981053346166","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-983-2780a881e2e8f9b5addbde64c6e6c93ea33d7518","authorizationType":"GROUP","createdAt":"2025-06-26T08:49:17Z","description":"CLI TEST Provider","displayName":"idp-983-2780a881e2e8f9b5addbde64c6e6c93ea33d7518","groupsClaim":"groups","id":"685d098d27410c4e07cf1530","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-906-35c23ab3476f15dcba9d49a041ab7fee4498d4a7","authorizationType":"GROUP","createdAt":"2025-05-28T09:19:08Z","description":"CLI TEST Provider","displayName":"idp-906-35c23ab3476f15dcba9d49a041ab7fee4498d4a7","groupsClaim":"groups","id":"6836d50c215c6f39623c990a","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"},{"associatedOrgs":[],"audience":"idp-597-ee4da25b6ad8d2813c535b1333a46280b1a06f30","authorizationType":"GROUP","createdAt":"2025-06-26T08:49:17Z","description":"CLI TEST Provider","displayName":"idp-597-ee4da25b6ad8d2813c535b1333a46280b1a06f30","groupsClaim":"groups","id":"685d098d27410c4e07cf1555","idpType":"WORKLOAD","issuerUri":"https://accounts.google.com","oktaIdpId":null,"protocol":"OIDC","updatedAt":null,"userClaim":"user"}],"totalCount":5} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_3.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_3.snaphost index 8d45271ddb..6ce59e27ea 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_3.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_identityProviders_3.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 954 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:20 GMT +Date: Thu, 24 Jul 2025 15:05:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 35 +X-Envoy-Upstream-Service-Time: 48 X-Frame-Options: DENY X-Java-Method: ApiFederationSettingsResource::getAllIdentityProviders X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/identityProviders?idpType=WORKFORCE&protocol=SAML&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"acsUrl":"https://auth-qa.mongodb.com/sso/saml2/0oa17ziag59V93JYS358","associatedDomains":["iam-test-domain-dev.com"],"associatedOrgs":[],"audienceUri":"https://www.okta.com/saml2/service-provider/spkcaajgznyowoyqsiqn","createdAt":"2024-07-30T15:11:58Z","description":"","displayName":"FedTest","id":"66a902c08811d46a1db437ca","idpType":"WORKFORCE","issuerUri":"urn:idp:default","oktaIdpId":"0oa17ziag59V93JYS358","pemFileInfo":{"certificates":[{"notAfter":"2051-12-16T14:28:59Z","notBefore":"2024-07-30T14:28:59Z"}],"fileName":null},"protocol":"SAML","requestBinding":"HTTP-POST","responseSignatureAlgorithm":"SHA-256","slug":"","ssoDebugEnabled":true,"ssoUrl":"http://localhost","status":"ACTIVE","updatedAt":"2024-07-30T15:12:50Z"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/List_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/List_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_1.snaphost index 56cf54ab4a..7df2da70da 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/List_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/List_connectedOrgsConfig/GET_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 414 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:20 GMT +Date: Thu, 24 Jul 2025 15:05:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 40 +X-Envoy-Upstream-Service-Time: 35 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::getAllConnectedOrgConfigs X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"links":[{"href":"http://localhost:8080/api/atlas/v2/federationSettings/656e4d8e91cb7d26db1bc9c6/connectedOrgConfigs?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"dataAccessIdentityProviderIds":[],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index b87bd5e054..6c33534edd 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 254 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:18 GMT +Date: Thu, 24 Jul 2025 15:05:40 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 139 +X-Envoy-Upstream-Service-Time: 100 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"dataAccessIdentityProviderIds":[],"domainAllowList":["https://accounts.google.com"],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config_back/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost b/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config_back/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost index 1bf17d832a..8ee1a9ec2d 100644 --- a/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config_back/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIdentityProviders/Update_connected_org_config_back/PATCH_api_atlas_v2_federationSettings_656e4d8e91cb7d26db1bc9c6_connectedOrgConfigs_a0123456789abcdef012345a_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK Content-Length: 225 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:19 GMT +Date: Thu, 24 Jul 2025 15:05:41 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 97 +X-Envoy-Upstream-Service-Time: 96 X-Frame-Options: DENY X-Java-Method: ApiConnectedOrgConfigsResource::updateConnectedOrgConfig X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"dataAccessIdentityProviderIds":[],"domainAllowList":[],"domainRestrictionEnabled":false,"identityProviderId":null,"orgId":"a0123456789abcdef012345a","postAuthRoleGrants":["ORG_OWNER"],"roleMappings":[],"userConflicts":null} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..07234649b7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 47 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:41 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 5b7aa47543..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Check_autoScalingMode_is_independentShardScaling/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 47 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:07 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 100 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..7e5fcec262 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2642 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 125 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost new file mode 100644 index 0000000000..3b933e22fc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3067 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index ec2dee5e9d..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2642 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost deleted file mode 100644 index 8c804e4ff8..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3067 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 124 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost index 1d1bb73d71..c3d6bb4fdb 100644 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Create_ISS_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 2632 Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT +Date: Thu, 24 Jul 2025 15:05:03 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 809 +X-Envoy-Upstream-Service-Time: 895 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionResource20241023::createCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..b6282fae38 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:43 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 352 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index aacdff1465..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 296 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..6741070a86 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3071 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 132 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost new file mode 100644 index 0000000000..9d7839879a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:17:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-525 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-525","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index f09a7225f0..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3071 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 134 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost deleted file mode 100644 index b12c8b8283..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Delete_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 204 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:22:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-769 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-769","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e800fa_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e800fa_clusters_provider_regions_1.snaphost deleted file mode 100644 index 259cd4a9f5..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e800fa_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 151 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_68824b9c42be0f23307f3673_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_68824b9c42be0f23307f3673_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..f3f6d474b6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_atlas_v2_groups_68824b9c42be0f23307f3673_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 124 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 8f051278eb..9dab16de85 100644 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:15 GMT +Date: Thu, 24 Jul 2025 15:05:03 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..a3a43728ba --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3067 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index 67d449a0f2..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3067 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..d45e94f702 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 47 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:42 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 6446977a5f..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Get_ISS_cluster_autoScalingMode/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 47 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:08 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost index 68d13f05d4..0348cd0b02 100644 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 200 OK -Content-Length: 7671 +Content-Length: 7378 Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT +Date: Thu, 24 Jul 2025 15:14:43 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 256 +X-Envoy-Upstream-Service-Time: 266 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAllClusters X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters?includeCount=true&includeDeletedWithRetainedBackups=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-36-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-x0ru0s-shard-0","standardSrv":"mongodb+srv://cluster-36.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801a8","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-165-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-165-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-iw2l06-shard-0","standardSrv":"mongodb+srv://cluster-165.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:17Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d75a799aa2ae9e80314","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-165/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-165","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d74a799aa2ae9e802df","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d74a799aa2ae9e802de","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"}],"totalCount":3} \ No newline at end of file +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters?includeCount=true&includeDeletedWithRetainedBackups=false&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:01Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd9b448981053346402","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"},{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-671-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-671-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ezs7ac-shard-0","standardSrv":"mongodb+srv://cluster-671.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:04:42Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824b8ab448981053345a0a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-671/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-671","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8ab4489810533459cc","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8ab4489810533459cb","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 651b1f0565..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-165_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 42 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 91 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 3e89bb458b..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 42 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..9d5411d9af --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 47 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:43 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 94 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..c854050231 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-671_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 42 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:43 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 87 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost deleted file mode 100644 index 17b83642ef..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_autoScalingConfiguration_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 47 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Deprecation: Wed, 23 Oct 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoScalingMode":"INDEPENDENT_SHARD_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_autoScalingConfiguration_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_autoScalingConfiguration_1.snaphost new file mode 100644 index 0000000000..35811c22f2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/List_ISS_cluster/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_autoScalingConfiguration_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 42 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:43 GMT +Deprecation: Wed, 23 Oct 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 79 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getAutoScalingMode +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoScalingMode":"CLUSTER_WIDE_SCALING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/POST_api_atlas_v2_groups_1.snaphost index f75a018546..a2ed6f5362 100644 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1073 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:10 GMT +Date: Thu, 24 Jul 2025 15:05:00 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 4105 +X-Envoy-Upstream-Service-Time: 3132 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:14Z","id":"687f1d6ea799aa2ae9e800fa","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e800fa/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersIss-e2e-193","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:03Z","id":"68824b9c42be0f23307f3673","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9c42be0f23307f3673/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersIss-e2e-950","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..4fbb5bb03d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2349 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:40 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 761 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":true,"pitEnabled":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371b","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index 5b742afec3..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Pause_ISS_cluster_with_the_wrong_flag/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2349 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:06 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 743 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":true,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80248","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost new file mode 100644 index 0000000000..f89e867219 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-525_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 3071 +Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 631 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-525-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-525-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-525.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:05:04Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824ba042be0f23307f3761","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-525/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-525","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824ba042be0f23307f371c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"},{"id":"68824ba042be0f23307f371e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba042be0f23307f371a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost deleted file mode 100644 index a6525e08c1..0000000000 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/Start_ISS_cluster/PATCH_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-769_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3071 -Content-Type: application/vnd.atlas.2024-10-23+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 618 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20241023::updateCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[],"standard":"mongodb://cluster-769-config-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-config-00-02.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-00.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-01.g1nxq.mongodb-dev.net:27016,cluster-769-shard-00-02.g1nxq.mongodb-dev.net:27016/?ssl=true&authSource=admin","standardSrv":"mongodb+srv://cluster-769.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d74a799aa2ae9e8028e","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-769/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-769","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80249","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"},{"id":"687f1d73a799aa2ae9e8024b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80247","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/memory.json b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/memory.json index 5552a16f01..024bb42522 100644 --- a/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/memory.json +++ b/test/e2e/testdata/.snapshots/TestIndependendShardScalingCluster/memory.json @@ -1 +1 @@ -{"TestIndependendShardScalingCluster/issClusterName":"cluster-769"} \ No newline at end of file +{"TestIndependendShardScalingCluster/issClusterName":"cluster-525"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_DATADOG_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_DATADOG_1.snaphost deleted file mode 100644 index 059fc514e2..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_DATADOG_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 428 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 228 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::createIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations/DATADOG?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_DATADOG_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_DATADOG_1.snaphost new file mode 100644 index 0000000000..368b98b917 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Create_DATADOG/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_DATADOG_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 428 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:42 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 225 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::createIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations/DATADOG?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_OPS_GENIE_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_OPS_GENIE_1.snaphost deleted file mode 100644 index dbaf785519..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_OPS_GENIE_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 545 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 158 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::createIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations/OPS_GENIE?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3300","id":"687f1dffa799aa2ae9e80e59","region":"US","type":"OPS_GENIE"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_OPS_GENIE_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_OPS_GENIE_1.snaphost new file mode 100644 index 0000000000..dba151f98b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Create_OPSGENIE/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_OPS_GENIE_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 545 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:43 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::createIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations/OPS_GENIE?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3377","id":"68824c0342be0f23307f422c","region":"US","type":"OPS_GENIE"}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_PAGER_DUTY_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_PAGER_DUTY_1.snaphost deleted file mode 100644 index f10f81c837..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_PAGER_DUTY_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 662 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::createIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations/PAGER_DUTY?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1e0044f1ab3f84231d4c","region":"US","serviceKey":"****************************0044","type":"PAGER_DUTY"},{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3300","id":"687f1dffa799aa2ae9e80e59","region":"US","type":"OPS_GENIE"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_PAGER_DUTY_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_PAGER_DUTY_1.snaphost new file mode 100644 index 0000000000..0bec75b327 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Create_PAGER_DUTY/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_PAGER_DUTY_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 662 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:43 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 184 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::createIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations/PAGER_DUTY?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824c03b448981053346753","region":"US","serviceKey":"****************************0011","type":"PAGER_DUTY"},{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3377","id":"68824c0342be0f23307f422c","region":"US","type":"OPS_GENIE"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_VICTOR_OPS_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_VICTOR_OPS_1.snaphost deleted file mode 100644 index 7338c1d948..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_VICTOR_OPS_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 784 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 166 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::createIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations/VICTOR_OPS?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1e0044f1ab3f84231d4c","region":"US","serviceKey":"****************************0044","type":"PAGER_DUTY"},{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3300","id":"687f1dffa799aa2ae9e80e59","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c88","id":"687f1e0044f1ab3f84231d54","routingKey":"test","type":"VICTOR_OPS"}],"totalCount":4} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_VICTOR_OPS_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_VICTOR_OPS_1.snaphost new file mode 100644 index 0000000000..7bcda76299 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Create_VICTOR_OPS/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_VICTOR_OPS_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 784 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:43 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 164 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::createIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations/VICTOR_OPS?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824c03b448981053346753","region":"US","serviceKey":"****************************0011","type":"PAGER_DUTY"},{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3377","id":"68824c0342be0f23307f422c","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c77","id":"68824c0342be0f23307f4233","routingKey":"test","type":"VICTOR_OPS"}],"totalCount":4} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost deleted file mode 100644 index 9463d50da3..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 907 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::createIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations/WEBHOOK?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1e0044f1ab3f84231d4c","region":"US","serviceKey":"****************************0044","type":"PAGER_DUTY"},{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3300","id":"687f1dffa799aa2ae9e80e59","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c88","id":"687f1e0044f1ab3f84231d54","routingKey":"test","type":"VICTOR_OPS"},{"id":"687f1e0044f1ab3f84231d6a","secret":"**************************2229","url":"https://example.com/****","type":"WEBHOOK"}],"totalCount":5} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost new file mode 100644 index 0000000000..310c839236 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Create_WEBHOOK/POST_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 907 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 159 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::createIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations/WEBHOOK?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824c03b448981053346753","region":"US","serviceKey":"****************************0011","type":"PAGER_DUTY"},{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3377","id":"68824c0342be0f23307f422c","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c77","id":"68824c0342be0f23307f4233","routingKey":"test","type":"VICTOR_OPS"},{"id":"68824c04b448981053346760","secret":"**************************2245","url":"https://example.com/****","type":"WEBHOOK"}],"totalCount":5} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost deleted file mode 100644 index a14aa4b11c..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:37 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::deleteIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost new file mode 100644 index 0000000000..26f81f1584 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Delete/DELETE_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::deleteIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost deleted file mode 100644 index f02d16d820..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_WEBHOOK_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 125 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:37 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::getIntegration -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"id":"687f1e0044f1ab3f84231d6a","secret":"**************************2229","url":"https://example.com/****","type":"WEBHOOK"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost new file mode 100644 index 0000000000..556878521d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/Describe/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_WEBHOOK_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 125 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 80 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::getIntegration +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"id":"68824c04b448981053346760","secret":"**************************2245","url":"https://example.com/****","type":"WEBHOOK"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_1.snaphost deleted file mode 100644 index 2daef781cd..0000000000 --- a/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_687f1dfb44f1ab3f84231ce2_integrations_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 899 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 70 -X-Frame-Options: DENY -X-Java-Method: ApiGroupIntegrationsResource::getIntegrations -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/integrations?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"687f1e0044f1ab3f84231d4c","region":"US","serviceKey":"****************************0044","type":"PAGER_DUTY"},{"apiKey":"****************************0066","customEndpoint":null,"id":"687f1dff44f1ab3f84231d47","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3300","id":"687f1dffa799aa2ae9e80e59","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c88","id":"687f1e0044f1ab3f84231d54","routingKey":"test","type":"VICTOR_OPS"},{"id":"687f1e0044f1ab3f84231d6a","secret":"**************************2229","url":"https://example.com/****","type":"WEBHOOK"}],"totalCount":5} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_1.snaphost new file mode 100644 index 0000000000..1ebade8624 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestIntegrations/List/GET_api_atlas_v2_groups_68824c0042be0f23307f41b0_integrations_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 899 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiGroupIntegrationsResource::getIntegrations +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/integrations?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"id":"68824c03b448981053346753","region":"US","serviceKey":"****************************0011","type":"PAGER_DUTY"},{"apiKey":"****************************0044","customEndpoint":null,"id":"68824c0242be0f23307f4228","region":"US","sendCollectionLatencyMetrics":false,"sendDatabaseMetrics":false,"sendUserProvidedResourceTags":false,"type":"DATADOG"},{"apiKey":"********************************3377","id":"68824c0342be0f23307f422c","region":"US","type":"OPS_GENIE"},{"apiKey":"********************************1c77","id":"68824c0342be0f23307f4233","routingKey":"test","type":"VICTOR_OPS"},{"id":"68824c04b448981053346760","secret":"**************************2245","url":"https://example.com/****","type":"WEBHOOK"}],"totalCount":5} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestIntegrations/POST_api_atlas_v2_groups_1.snaphost index 180a2162fc..6d2f00c018 100644 --- a/test/e2e/testdata/.snapshots/TestIntegrations/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestIntegrations/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1074 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:31 GMT +Date: Thu, 24 Jul 2025 15:06:40 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 3711 +X-Envoy-Upstream-Service-Time: 2059 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:13:34Z","id":"687f1dfb44f1ab3f84231ce2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dfb44f1ab3f84231ce2/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"integrations-e2e-414","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:42Z","id":"68824c0042be0f23307f41b0","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0042be0f23307f41b0/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"integrations-e2e-899","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestIntegrations/memory.json b/test/e2e/testdata/.snapshots/TestIntegrations/memory.json index 75518662d7..250cee3258 100644 --- a/test/e2e/testdata/.snapshots/TestIntegrations/memory.json +++ b/test/e2e/testdata/.snapshots/TestIntegrations/memory.json @@ -1 +1 @@ -{"TestIntegrations/Create_DATADOG/datadog_rand":"Bg==","TestIntegrations/Create_OPSGENIE/opsgenie_rand":"","TestIntegrations/Create_PAGER_DUTY/pager_duty_rand":"BA==","TestIntegrations/Create_VICTOR_OPS/victor_ops_rand":"CA==","TestIntegrations/rand":"5Q=="} \ No newline at end of file +{"TestIntegrations/Create_DATADOG/datadog_rand":"BA==","TestIntegrations/Create_OPSGENIE/opsgenie_rand":"Bw==","TestIntegrations/Create_PAGER_DUTY/pager_duty_rand":"AQ==","TestIntegrations/Create_VICTOR_OPS/victor_ops_rand":"Bw==","TestIntegrations/rand":"9Q=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_userToDNMapping_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_userToDNMapping_1.snaphost deleted file mode 100644 index 5515738dcc..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_userToDNMapping_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 167 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::deleteUserSecurityLdapUserToDNMapping -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_userToDNMapping_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_userToDNMapping_1.snaphost new file mode 100644 index 0000000000..8f802e7bf0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Delete/DELETE_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_userToDNMapping_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 167 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::deleteUserSecurityLdapUserToDNMapping +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_1.snaphost deleted file mode 100644 index 52429dfd38..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1794 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:25Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7a44f1ab3f842311cb","id":"687f1d7da799aa2ae9e804c1","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-878","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7da799aa2ae9e804ae","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7da799aa2ae9e804b9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_2.snaphost deleted file mode 100644 index 8cb3b91493..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1880 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:25Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7a44f1ab3f842311cb","id":"687f1d7da799aa2ae9e804c1","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-878","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7da799aa2ae9e804ba","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7da799aa2ae9e804b9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_3.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_3.snaphost deleted file mode 100644 index d6cb6a7c5f..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_ldap-878_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2169 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 95 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ldap-878-shard-00-00.jqgzer.mongodb-dev.net:27017,ldap-878-shard-00-01.jqgzer.mongodb-dev.net:27017,ldap-878-shard-00-02.jqgzer.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-f5zk4m-shard-0","standardSrv":"mongodb+srv://ldap-878.jqgzer.mongodb-dev.net"},"createDate":"2025-07-22T05:11:25Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7a44f1ab3f842311cb","id":"687f1d7da799aa2ae9e804c1","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-878","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7da799aa2ae9e804ba","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7da799aa2ae9e804b9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_provider_regions_1.snaphost deleted file mode 100644 index 8c1b69cf60..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:24 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 115 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_1.snaphost new file mode 100644 index 0000000000..118b551aef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1794 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:50Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8d42be0f23307f34b2","id":"68824b92b448981053345b94","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-971","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b91b448981053345b84","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b91b448981053345b8c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_2.snaphost new file mode 100644 index 0000000000..ed19ddb8f4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1880 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:50Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8d42be0f23307f34b2","id":"68824b92b448981053345b94","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-971","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b91b448981053345b8d","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b91b448981053345b8c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_3.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_3.snaphost new file mode 100644 index 0000000000..cfc93977ad --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_ldap-971_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2169 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 118 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ldap-971-shard-00-00.vadhcj.mongodb-dev.net:27017,ldap-971-shard-00-01.vadhcj.mongodb-dev.net:27017,ldap-971-shard-00-02.vadhcj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-quvua8-shard-0","standardSrv":"mongodb+srv://ldap-971.vadhcj.mongodb-dev.net"},"createDate":"2025-07-24T15:04:50Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8d42be0f23307f34b2","id":"68824b92b448981053345b94","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-971","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b91b448981053345b8d","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b91b448981053345b8c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..7f4b86dd6c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 0548336949..0ace8d3037 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:24 GMT +Date: Thu, 24 Jul 2025 15:04:49 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost deleted file mode 100644 index 290dbdf7f7..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 285 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 65 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::getUserSecurity -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost new file mode 100644 index 0000000000..5215289f3e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 285 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::getUserSecurity +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost deleted file mode 100644 index 42e487b821..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 423 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/userSecurity/ldap/verify/687f1f7e44f1ab3f84232306","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"687f1f7e44f1ab3f84232306","status":"FAILED","validations":[{"status":"FAIL","validationType":"CONNECT"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost new file mode 100644 index 0000000000..7b5046c2ff --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Get_Status/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 423 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/userSecurity/ldap/verify/68824de1b4489810533470bd","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"68824de1b4489810533470bd","status":"FAILED","validations":[{"status":"FAIL","validationType":"CONNECT"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_1.snaphost index 4bb4c33ae3..f5140d8efc 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1066 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1841 +X-Envoy-Upstream-Service-Time: 3209 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:24Z","id":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"ldap-e2e-965","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:49Z","id":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"ldap-e2e-942","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_1.snaphost deleted file mode 100644 index cdb9371b03..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1784 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:25 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 620 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:25Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7a44f1ab3f842311cb","id":"687f1d7da799aa2ae9e804c1","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/clusters/ldap-878/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-878","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7da799aa2ae9e804ae","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7da799aa2ae9e804b9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_1.snaphost new file mode 100644 index 0000000000..8c983c649e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1784 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:49 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 615 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:50Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8d42be0f23307f34b2","id":"68824b92b448981053345b94","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/clusters/ldap-971/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-971","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b91b448981053345b84","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b91b448981053345b8c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost deleted file mode 100644 index bac9f5b636..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 285 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 129 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::patchUserSecurity -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost new file mode 100644 index 0000000000..48738c7edf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Save/PATCH_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 285 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:11 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 168 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::patchUserSecurity +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_1.snaphost deleted file mode 100644 index 6838826c76..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 380 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 225 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::createLDAPVerifyConnectivityRequest -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/userSecurity/ldap/verify/687f1f7e44f1ab3f84232306","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"687f1f7e44f1ab3f84232306","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_1.snaphost new file mode 100644 index 0000000000..ee51e6c9fe --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Verify/POST_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 380 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 169 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::createLDAPVerifyConnectivityRequest +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/userSecurity/ldap/verify/68824de1b4489810533470bd","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"68824de1b4489810533470bd","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost deleted file mode 100644 index 298fdd1ee8..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 380 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/userSecurity/ldap/verify/687f1f7e44f1ab3f84232306","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"687f1f7e44f1ab3f84232306","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_2.snaphost deleted file mode 100644 index 25db1264b0..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_687f1d7a44f1ab3f842311cb_userSecurity_ldap_verify_687f1f7e44f1ab3f84232306_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 423 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 78 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d7a44f1ab3f842311cb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7a44f1ab3f842311cb/userSecurity/ldap/verify/687f1f7e44f1ab3f84232306","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"687f1f7e44f1ab3f84232306","status":"FAILED","validations":[{"status":"FAIL","validationType":"CONNECT"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost new file mode 100644 index 0000000000..cbe3e55e85 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 380 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/userSecurity/ldap/verify/68824de1b4489810533470bd","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"68824de1b4489810533470bd","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_2.snaphost new file mode 100644 index 0000000000..af589ea4b1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/Watch/GET_api_atlas_v2_groups_68824b8d42be0f23307f34b2_userSecurity_ldap_verify_68824de1b4489810533470bd_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 423 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::checkLDAPVerifyConnectivityRequestStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824b8d42be0f23307f34b2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8d42be0f23307f34b2/userSecurity/ldap/verify/68824de1b4489810533470bd","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"68824de1b4489810533470bd","status":"FAILED","validations":[{"status":"FAIL","validationType":"CONNECT"}]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/memory.json b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/memory.json index 7cb8bfaf23..fa231d6b75 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithFlags/memory.json +++ b/test/e2e/testdata/.snapshots/TestLDAPWithFlags/memory.json @@ -1 +1 @@ -{"TestLDAPWithFlags/ldapGenerateClusterName":"ldap-878"} \ No newline at end of file +{"TestLDAPWithFlags/ldapGenerateClusterName":"ldap-971"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_userToDNMapping_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_userToDNMapping_1.snaphost deleted file mode 100644 index 66b1717c26..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_userToDNMapping_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 167 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::deleteUserSecurityLdapUserToDNMapping -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_userToDNMapping_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_userToDNMapping_1.snaphost new file mode 100644 index 0000000000..220bf1e5f3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Delete/DELETE_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_userToDNMapping_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 167 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:23:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 151 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::deleteUserSecurityLdapUserToDNMapping +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_1.snaphost deleted file mode 100644 index de3f3eea15..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1794 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:08Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f8544f1ab3f8423231e","id":"687f1f88a799aa2ae9e8146d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-180","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1f88a799aa2ae9e8145d","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f88a799aa2ae9e81465","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_2.snaphost deleted file mode 100644 index 4733504996..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1880 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:08Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f8544f1ab3f8423231e","id":"687f1f88a799aa2ae9e8146d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-180","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f88a799aa2ae9e81466","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f88a799aa2ae9e81465","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_3.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_3.snaphost deleted file mode 100644 index 800e32a546..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_ldap-180_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2169 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ldap-180-shard-00-00.wxprs2.mongodb-dev.net:27017,ldap-180-shard-00-01.wxprs2.mongodb-dev.net:27017,ldap-180-shard-00-02.wxprs2.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-5q303s-shard-0","standardSrv":"mongodb+srv://ldap-180.wxprs2.mongodb-dev.net"},"createDate":"2025-07-22T05:20:08Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f8544f1ab3f8423231e","id":"687f1f88a799aa2ae9e8146d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-180","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f88a799aa2ae9e81466","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f88a799aa2ae9e81465","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_provider_regions_1.snaphost deleted file mode 100644 index f154821494..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_1.snaphost new file mode 100644 index 0000000000..db003b72f4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1794 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:15 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:15:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824e0042be0f23307f4ded","id":"68824e0242be0f23307f4e6a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-797","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824e0242be0f23307f4e5a","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e0242be0f23307f4e62","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_2.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_2.snaphost new file mode 100644 index 0000000000..188ab6d842 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1880 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:15 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:15:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824e0042be0f23307f4ded","id":"68824e0242be0f23307f4e6a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-797","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e0242be0f23307f4e63","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e0242be0f23307f4e62","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_3.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_3.snaphost new file mode 100644 index 0000000000..d110548932 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_ldap-797_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2169 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:23:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 118 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ldap-797-shard-00-00.mwltu6.mongodb-dev.net:27017,ldap-797-shard-00-01.mwltu6.mongodb-dev.net:27017,ldap-797-shard-00-02.mwltu6.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-hng6s1-shard-0","standardSrv":"mongodb+srv://ldap-797.mwltu6.mongodb-dev.net"},"createDate":"2025-07-24T15:15:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824e0042be0f23307f4ded","id":"68824e0242be0f23307f4e6a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-797","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e0242be0f23307f4e63","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e0242be0f23307f4e62","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..3c6dfcf439 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:14 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 3832563b2c..be5aa19c32 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:20:07 GMT +Date: Thu, 24 Jul 2025 15:15:14 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_1.snaphost index a603e25e69..ce42e2795f 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1065 +Content-Length: 1066 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:05 GMT +Date: Thu, 24 Jul 2025 15:15:12 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1988 +X-Envoy-Upstream-Service-Time: 1619 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:20:07Z","id":"687f1f8544f1ab3f8423231e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"ldap-e2e-80","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:15:13Z","id":"68824e0042be0f23307f4ded","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"ldap-e2e-863","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_1.snaphost deleted file mode 100644 index 0c52a03467..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1784 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:08 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 578 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:08Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f8544f1ab3f8423231e","id":"687f1f88a799aa2ae9e8146d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/clusters/ldap-180/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-180","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1f88a799aa2ae9e8145d","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f88a799aa2ae9e81465","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_1.snaphost new file mode 100644 index 0000000000..9374d4c97c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1784 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:14 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 648 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:15:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824e0042be0f23307f4ded","id":"68824e0242be0f23307f4e6a","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/clusters/ldap-797/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"ldap-797","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824e0242be0f23307f4e5a","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e0242be0f23307f4e62","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_1.snaphost deleted file mode 100644 index eed0a68ca3..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 285 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 163 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::patchUserSecurity -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_1.snaphost new file mode 100644 index 0000000000..217b84fb26 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Save/PATCH_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 285 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:23:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 162 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::patchUserSecurity +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"customerX509":{},"ldap":{"authenticationEnabled":false,"authorizationEnabled":false,"bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657,"userToDNMapping":[{"match":"(.+)@ENGINEERING.EXAMPLE.COM","substitution":"cn={0},ou=engineering,dc=example,dc=com"}]}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_verify_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_verify_1.snaphost deleted file mode 100644 index 671712b942..0000000000 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_687f1f8544f1ab3f8423231e_userSecurity_ldap_verify_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 380 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 154 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasUserSecurityResource::createLDAPVerifyConnectivityRequest -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1f8544f1ab3f8423231e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f8544f1ab3f8423231e/userSecurity/ldap/verify/687f2141a799aa2ae9e81916","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"687f2141a799aa2ae9e81916","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_verify_1.snaphost b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_verify_1.snaphost new file mode 100644 index 0000000000..60aac2a21b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/Verify/POST_api_atlas_v2_groups_68824e0042be0f23307f4ded_userSecurity_ldap_verify_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 380 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:23:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 158 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasUserSecurityResource::createLDAPVerifyConnectivityRequest +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824e0042be0f23307f4ded","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e0042be0f23307f4ded/userSecurity/ldap/verify/68824febb448981053347712","rel":"self"}],"request":{"authzQueryTemplate":"","bindUsername":"cn=admin,dc=example,dc=org","hostname":"localhost","port":19657},"requestId":"68824febb448981053347712","status":"PENDING","validations":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/memory.json b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/memory.json index 30db45a7bd..2198c3ba83 100644 --- a/test/e2e/testdata/.snapshots/TestLDAPWithStdin/memory.json +++ b/test/e2e/testdata/.snapshots/TestLDAPWithStdin/memory.json @@ -1 +1 @@ -{"TestLDAPWithStdin/ldapGenerateClusterName":"ldap-180"} \ No newline at end of file +{"TestLDAPWithStdin/ldapGenerateClusterName":"ldap-797"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLinkToken/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost b/test/e2e/testdata/.snapshots/TestLinkToken/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost index 8643e244c7..81906d235e 100644 --- a/test/e2e/testdata/.snapshots/TestLinkToken/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLinkToken/Create/POST_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 201 Created Content-Length: 29 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:17 GMT +Date: Thu, 24 Jul 2025 15:06:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 308 +X-Envoy-Upstream-Service-Time: 187 X-Frame-Options: DENY X-Java-Method: ApiLiveMigrationsLinkTokensResource::createLinkToken X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"linkToken":"redactedToken"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLinkToken/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost b/test/e2e/testdata/.snapshots/TestLinkToken/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost index aa81457810..941fd2c56f 100644 --- a/test/e2e/testdata/.snapshots/TestLinkToken/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLinkToken/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost @@ -1,16 +1,16 @@ HTTP/2.0 404 Not Found Content-Length: 137 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:16 GMT +Date: Thu, 24 Jul 2025 15:06:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 52 +X-Envoy-Upstream-Service-Time: 58 X-Frame-Options: DENY X-Java-Method: ApiLiveMigrationsLinkTokensResource::deleteOrgLink X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none {"detail":"Could not find the requested external organization link.","error":404,"errorCode":null,"parameters":null,"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLinkToken/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost b/test/e2e/testdata/.snapshots/TestLinkToken/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost index 23c0201cca..eae873a98c 100644 --- a/test/e2e/testdata/.snapshots/TestLinkToken/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLinkToken/Delete/DELETE_api_atlas_v2_orgs_a0123456789abcdef012345a_liveMigrations_linkTokens_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 204 No Content Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:18 GMT +Date: Thu, 24 Jul 2025 15:06:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 126 +X-Envoy-Upstream-Service-Time: 123 X-Frame-Options: DENY X-Java-Method: ApiLiveMigrationsLinkTokensResource::deleteOrgLink X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost deleted file mode 100644 index 416e3a9121..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Disposition: attachment; filename="atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_2025-07-21T05:28:46.00000025_2025-07-22T05:28:46.00000025_MONGODB_AUDIT_LOG.log.gz" -Content-Type: application/vnd.atlas.2023-02-01+gzip -Date: Tue, 22 Jul 2025 05:28:46 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 153 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost new file mode 100644 index 0000000000..f34a5301d3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb-audit-log.gz_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Disposition: attachment; filename="atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_2025-07-23T15:21:35.000000945_2025-07-24T15:21:35.000000945_MONGODB_AUDIT_LOG.log.gz" +Content-Type: application/vnd.atlas.2023-02-01+gzip +Date: Thu, 24 Jul 2025 15:21:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 166 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost deleted file mode 100644 index 503c7c0698..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Disposition: attachment; filename="atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_2025-07-21T05:28:45.000000256_2025-07-22T05:28:45.000000256_MONGODB.log.gz" -Content-Type: application/vnd.atlas.2023-02-01+gzip -Date: Tue, 22 Jul 2025 05:28:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 254 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost new file mode 100644 index 0000000000..df34872e63 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Disposition: attachment; filename="atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_2025-07-23T15:21:35.000000038_2025-07-24T15:21:35.000000038_MONGODB.log.gz" +Content-Type: application/vnd.atlas.2023-02-01+gzip +Date: Thu, 24 Jul 2025 15:21:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 264 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost deleted file mode 100644 index 58b0ebc00c..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongodb.gz_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Disposition: attachment; filename="atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_2025-07-21T05:28:47.00000017_2025-07-22T05:28:47.00000017_MONGODB.log.gz" -Content-Type: application/vnd.atlas.2023-02-01+gzip -Date: Tue, 22 Jul 2025 05:28:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 300 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost new file mode 100644 index 0000000000..1f597545de --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/Download_mongodb.gz_no_output_path/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongodb.gz_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Disposition: attachment; filename="atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_2025-07-23T15:21:36.000000608_2025-07-24T15:21:36.000000608_MONGODB.log.gz" +Content-Type: application/vnd.atlas.2023-02-01+gzip +Date: Thu, 24 Jul 2025 15:21:36 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 146 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost deleted file mode 100644 index 7c081caa20..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Disposition: attachment; filename="atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_2025-07-21T05:28:46.000000681_2025-07-22T05:28:46.000000681_MONGOS_AUDIT_LOG.log.gz" -Content-Type: application/vnd.atlas.2023-02-01+gzip -Date: Tue, 22 Jul 2025 05:28:46 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 168 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost new file mode 100644 index 0000000000..bdf56aa6b8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos-audit-log.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos-audit-log.gz_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Disposition: attachment; filename="atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_2025-07-23T15:21:36.000000286_2025-07-24T15:21:36.000000286_MONGOS_AUDIT_LOG.log.gz" +Content-Type: application/vnd.atlas.2023-02-01+gzip +Date: Thu, 24 Jul 2025 15:21:36 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 148 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos.gz_1.snaphost deleted file mode 100644 index 67bbd4e4c0..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_logs_mongos.gz_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Disposition: attachment; filename="atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net_2025-07-21T05:28:45.000000807_2025-07-22T05:28:45.000000807_MONGOS.log.gz" -Content-Type: application/vnd.atlas.2023-02-01+gzip -Date: Tue, 22 Jul 2025 05:28:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 140 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos.gz_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos.gz_1.snaphost new file mode 100644 index 0000000000..f859b98efd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/Download_mongos.gz/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_logs_mongos.gz_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Disposition: attachment; filename="atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net_2025-07-23T15:21:35.000000478_2025-07-24T15:21:35.000000478_MONGOS.log.gz" +Content-Type: application/vnd.atlas.2023-02-01+gzip +Date: Thu, 24 Jul 2025 15:21:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 274 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::logsForHost +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_1.snaphost deleted file mode 100644 index 71fbd68bf4..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1794 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:20 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:21:20Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1fcca799aa2ae9e8158a","id":"687f1fd044f1ab3f842325f5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-721","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1fcf44f1ab3f842325e5","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1fcf44f1ab3f842325ed","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_2.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_2.snaphost deleted file mode 100644 index dd32e1b297..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1880 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 116 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:21:20Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1fcca799aa2ae9e8158a","id":"687f1fd044f1ab3f842325f5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-721","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1fcf44f1ab3f842325ee","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1fcf44f1ab3f842325ed","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_3.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_3.snaphost deleted file mode 100644 index 162b474bcb..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_logs-721_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2169 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 126 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://logs-721-shard-00-00.xo0bo7.mongodb-dev.net:27017,logs-721-shard-00-01.xo0bo7.mongodb-dev.net:27017,logs-721-shard-00-02.xo0bo7.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-wdk1ee-shard-0","standardSrv":"mongodb+srv://logs-721.xo0bo7.mongodb-dev.net"},"createDate":"2025-07-22T05:21:20Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1fcca799aa2ae9e8158a","id":"687f1fd044f1ab3f842325f5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-721","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1fcf44f1ab3f842325ee","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1fcf44f1ab3f842325ed","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_provider_regions_1.snaphost deleted file mode 100644 index f6e029ffc2..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 100 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_processes_1.snaphost deleted file mode 100644 index 444de7caf8..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_processes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1844 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 90 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:28:07Z","groupId":"687f1fcca799aa2ae9e8158a","hostname":"atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net","id":"atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net:27017","lastPing":"2025-07-22T05:28:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/processes/atlas-wdk1ee-shard-00-00.xo0bo7.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-wdk1ee-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"logs-721-shard-00-00.xo0bo7.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:28:07Z","groupId":"687f1fcca799aa2ae9e8158a","hostname":"atlas-wdk1ee-shard-00-01.xo0bo7.mongodb-dev.net","id":"atlas-wdk1ee-shard-00-01.xo0bo7.mongodb-dev.net:27017","lastPing":"2025-07-22T05:28:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/processes/atlas-wdk1ee-shard-00-01.xo0bo7.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-wdk1ee-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"logs-721-shard-00-01.xo0bo7.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:28:07Z","groupId":"687f1fcca799aa2ae9e8158a","hostname":"atlas-wdk1ee-shard-00-02.xo0bo7.mongodb-dev.net","id":"atlas-wdk1ee-shard-00-02.xo0bo7.mongodb-dev.net:27017","lastPing":"2025-07-22T05:28:37Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/processes/atlas-wdk1ee-shard-00-02.xo0bo7.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-wdk1ee-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"logs-721-shard-00-02.xo0bo7.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_1.snaphost new file mode 100644 index 0000000000..78247a6038 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1794 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:15 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:15Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824d8842be0f23307f4a7a","id":"68824d8bb448981053346f01","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-826","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824d8ab448981053346ef1","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d8bb448981053346ef9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_2.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_2.snaphost new file mode 100644 index 0000000000..86ffdf15b8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1880 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:15 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:15Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824d8842be0f23307f4a7a","id":"68824d8bb448981053346f01","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-826","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824d8bb448981053346efa","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d8bb448981053346ef9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_3.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_3.snaphost new file mode 100644 index 0000000000..3093395279 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_logs-826_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2169 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:21:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://logs-826-shard-00-00.pftyhq.mongodb-dev.net:27017,logs-826-shard-00-01.pftyhq.mongodb-dev.net:27017,logs-826-shard-00-02.pftyhq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-i68ndc-shard-0","standardSrv":"mongodb+srv://logs-826.pftyhq.mongodb-dev.net"},"createDate":"2025-07-24T15:13:15Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824d8842be0f23307f4a7a","id":"68824d8bb448981053346f01","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-826","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824d8bb448981053346efa","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d8bb448981053346ef9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..0b81d18b02 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:14 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 118 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_processes_1.snaphost new file mode 100644 index 0000000000..1ab64ed1e5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_atlas_v2_groups_68824d8842be0f23307f4a7a_processes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1844 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:21:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:20:48Z","groupId":"68824d8842be0f23307f4a7a","hostname":"atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net","id":"atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net:27017","lastPing":"2025-07-24T15:21:22Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/processes/atlas-i68ndc-shard-00-00.pftyhq.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-i68ndc-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"logs-826-shard-00-00.pftyhq.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:20:48Z","groupId":"68824d8842be0f23307f4a7a","hostname":"atlas-i68ndc-shard-00-01.pftyhq.mongodb-dev.net","id":"atlas-i68ndc-shard-00-01.pftyhq.mongodb-dev.net:27017","lastPing":"2025-07-24T15:21:22Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/processes/atlas-i68ndc-shard-00-01.pftyhq.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-i68ndc-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"logs-826-shard-00-01.pftyhq.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:20:49Z","groupId":"68824d8842be0f23307f4a7a","hostname":"atlas-i68ndc-shard-00-02.pftyhq.mongodb-dev.net","id":"atlas-i68ndc-shard-00-02.pftyhq.mongodb-dev.net:27017","lastPing":"2025-07-24T15:21:22Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/processes/atlas-i68ndc-shard-00-02.pftyhq.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-i68ndc-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"logs-826-shard-00-02.pftyhq.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 8c8e97075d..00d07cfb45 100644 --- a/test/e2e/testdata/.snapshots/TestLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLogs/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:21:18 GMT +Date: Thu, 24 Jul 2025 15:13:14 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_1.snaphost index 500e0088b6..26e4f751aa 100644 --- a/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1066 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:16 GMT +Date: Thu, 24 Jul 2025 15:13:12 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2602 +X-Envoy-Upstream-Service-Time: 1537 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:21:18Z","id":"687f1fcca799aa2ae9e8158a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"logs-e2e-640","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:13:14Z","id":"68824d8842be0f23307f4a7a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"logs-e2e-986","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_1.snaphost deleted file mode 100644 index 63e6e0bfb0..0000000000 --- a/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_687f1fcca799aa2ae9e8158a_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1784 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:19 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 631 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:21:20Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1fcca799aa2ae9e8158a","id":"687f1fd044f1ab3f842325f5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fcca799aa2ae9e8158a/clusters/logs-721/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-721","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1fcf44f1ab3f842325e5","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1fcf44f1ab3f842325ed","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_1.snaphost new file mode 100644 index 0000000000..1a9fef43d5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestLogs/POST_api_atlas_v2_groups_68824d8842be0f23307f4a7a_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1784 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:14 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 643 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:15Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824d8842be0f23307f4a7a","id":"68824d8bb448981053346f01","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d8842be0f23307f4a7a/clusters/logs-826/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"logs-826","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824d8ab448981053346ef1","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d8bb448981053346ef9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestLogs/memory.json b/test/e2e/testdata/.snapshots/TestLogs/memory.json index b2fc4d203e..40e81c422d 100644 --- a/test/e2e/testdata/.snapshots/TestLogs/memory.json +++ b/test/e2e/testdata/.snapshots/TestLogs/memory.json @@ -1 +1 @@ -{"TestLogs/logsGenerateClusterName":"logs-721"} \ No newline at end of file +{"TestLogs/logsGenerateClusterName":"logs-826"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/POST_api_atlas_v2_groups_1.snaphost index 171ab0996b..f85a387bb3 100644 --- a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1073 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:38 GMT +Date: Thu, 24 Jul 2025 15:06:45 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2220 +X-Envoy-Upstream-Service-Time: 1476 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:13:40Z","id":"687f1e0244f1ab3f84231d7d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0244f1ab3f84231d7d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"maintenance-e2e-125","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:47Z","id":"68824c05b448981053346773","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c05b448981053346773/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"maintenance-e2e-820","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost deleted file mode 100644 index cf6d3641df..0000000000 --- a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Date: Tue, 22 Jul 2025 05:13:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type: application/vnd.atlas.2023-01-01+json -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 113 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::resetCustomGroupMaintenanceWindow -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost new file mode 100644 index 0000000000..732bb415e5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/clear/DELETE_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Date: Thu, 24 Jul 2025 15:06:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type: application/vnd.atlas.2023-01-01+json +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::resetCustomGroupMaintenanceWindow +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost deleted file mode 100644 index 144dea9fa9..0000000000 --- a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 117 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 74 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::getGroupMaintenanceWindow -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoDeferOnceEnabled":false,"dayOfWeek":1,"hourOfDay":1,"numberOfDeferrals":0,"startASAP":false,"timeZoneId":"UTC"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost new file mode 100644 index 0000000000..ff35a1ad51 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/describe/GET_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 117 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 67 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::getGroupMaintenanceWindow +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoDeferOnceEnabled":false,"dayOfWeek":1,"hourOfDay":1,"numberOfDeferrals":0,"startASAP":false,"timeZoneId":"UTC"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost deleted file mode 100644 index 014059357a..0000000000 --- a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_687f1e0244f1ab3f84231d7d_maintenanceWindow_1.snaphost +++ /dev/null @@ -1,15 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 0 -Date: Tue, 22 Jul 2025 05:13:40 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type: application/vnd.atlas.2023-01-01+json -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 234 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::patchGroupMaintenanceWindows -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost new file mode 100644 index 0000000000..06d6641395 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMaintenanceWindows/update/PATCH_api_atlas_v2_groups_68824c05b448981053346773_maintenanceWindow_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 200 OK +Content-Length: 0 +Date: Thu, 24 Jul 2025 15:06:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type: application/vnd.atlas.2023-01-01+json +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 240 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupMaintenanceWindowResource::patchGroupMaintenanceWindows +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_1.snaphost deleted file mode 100644 index 2e0703ab2d..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1806 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:47 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:46Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8e44f1ab3f84231649","id":"687f1d9244f1ab3f84231739","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-802","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d9244f1ab3f84231729","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9244f1ab3f84231731","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_2.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_2.snaphost deleted file mode 100644 index 8b07b03c47..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1892 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:46Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8e44f1ab3f84231649","id":"687f1d9244f1ab3f84231739","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-802","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9244f1ab3f84231732","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9244f1ab3f84231731","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_3.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_3.snaphost deleted file mode 100644 index 42edc91a4e..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_metrics-802_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2193 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://metrics-802-shard-00-00.8bkzkj.mongodb-dev.net:27017,metrics-802-shard-00-01.8bkzkj.mongodb-dev.net:27017,metrics-802-shard-00-02.8bkzkj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-11xi29-shard-0","standardSrv":"mongodb+srv://metrics-802.8bkzkj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:46Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8e44f1ab3f84231649","id":"687f1d9244f1ab3f84231739","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-802","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9244f1ab3f84231732","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9244f1ab3f84231731","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_provider_regions_1.snaphost deleted file mode 100644 index 4e5b7a910d..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_1.snaphost deleted file mode 100644 index 028ff33d22..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1853 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 80 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:18:35Z","groupId":"687f1d8e44f1ab3f84231649","hostname":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net","id":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-11xi29-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"metrics-802-shard-00-00.8bkzkj.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:18:35Z","groupId":"687f1d8e44f1ab3f84231649","hostname":"atlas-11xi29-shard-00-01.8bkzkj.mongodb-dev.net","id":"atlas-11xi29-shard-00-01.8bkzkj.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-01.8bkzkj.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-11xi29-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"metrics-802-shard-00-01.8bkzkj.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:18:35Z","groupId":"687f1d8e44f1ab3f84231649","hostname":"atlas-11xi29-shard-00-02.8bkzkj.mongodb-dev.net","id":"atlas-11xi29-shard-00-02.8bkzkj.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:10Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-02.8bkzkj.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-11xi29-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"metrics-802-shard-00-02.8bkzkj.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_1.snaphost new file mode 100644 index 0000000000..9cb6bc4e97 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1806 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 98 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824baeb448981053345f1a","id":"68824bb1b448981053345ffd","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-674","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb0b448981053345fed","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb0b448981053345ff5","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_2.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_2.snaphost new file mode 100644 index 0000000000..7e839dd100 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1892 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824baeb448981053345f1a","id":"68824bb1b448981053345ffd","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-674","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb0b448981053345ff6","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb0b448981053345ff5","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_3.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_3.snaphost new file mode 100644 index 0000000000..41d141e28d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_metrics-674_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2193 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://metrics-674-shard-00-00.pvilu4.mongodb-dev.net:27017,metrics-674-shard-00-01.pvilu4.mongodb-dev.net:27017,metrics-674-shard-00-02.pvilu4.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-4phap8-shard-0","standardSrv":"mongodb+srv://metrics-674.pvilu4.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824baeb448981053345f1a","id":"68824bb1b448981053345ffd","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-674","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb0b448981053345ff6","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb0b448981053345ff5","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..7900899ca2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_1.snaphost new file mode 100644 index 0000000000..24f8ece768 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1853 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:06 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:13:26Z","groupId":"68824baeb448981053345f1a","hostname":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net","id":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:00Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-4phap8-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"metrics-674-shard-00-00.pvilu4.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:13:26Z","groupId":"68824baeb448981053345f1a","hostname":"atlas-4phap8-shard-00-01.pvilu4.mongodb-dev.net","id":"atlas-4phap8-shard-00-01.pvilu4.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:00Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-01.pvilu4.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-4phap8-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"metrics-674-shard-00-01.pvilu4.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:13:26Z","groupId":"68824baeb448981053345f1a","hostname":"atlas-4phap8-shard-00-02.pvilu4.mongodb-dev.net","id":"atlas-4phap8-shard-00-02.pvilu4.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:00Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-02.pvilu4.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-4phap8-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"metrics-674-shard-00-02.pvilu4.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index e97723094e..aa64f599ed 100644 --- a/test/e2e/testdata/.snapshots/TestMetrics/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestMetrics/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:45 GMT +Date: Thu, 24 Jul 2025 15:05:20 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_1.snaphost index aff71951d5..cf88bf0ccd 100644 --- a/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1069 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT +Date: Thu, 24 Jul 2025 15:05:18 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2537 +X-Envoy-Upstream-Service-Time: 1271 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:45Z","id":"687f1d8e44f1ab3f84231649","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"metrics-e2e-646","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:19Z","id":"68824baeb448981053345f1a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"metrics-e2e-936","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_1.snaphost deleted file mode 100644 index c90f5ed38b..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1796 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:46 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 598 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:46Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8e44f1ab3f84231649","id":"687f1d9244f1ab3f84231739","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/clusters/metrics-802/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-802","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d9244f1ab3f84231729","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9244f1ab3f84231731","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_1.snaphost new file mode 100644 index 0000000000..15f9006c2b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/POST_api_atlas_v2_groups_68824baeb448981053345f1a_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1796 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 589 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824baeb448981053345f1a","id":"68824bb1b448981053345ffd","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/clusters/metrics-674/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"metrics-674","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb0b448981053345fed","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb0b448981053345ff5","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_config_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_config_measurements_1.snaphost deleted file mode 100644 index 2892198673..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_config_measurements_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1741 -Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 183 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getSpecificDatabaseMeasurements -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"databaseName":"config","end":"2025-07-22T05:18:41Z","granularity":"PT30M","groupId":"687f1d8e44f1ab3f84231649","hostId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/databases/config/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":146.0}],"name":"DATABASE_AVERAGE_OBJECT_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":8.0}],"name":"DATABASE_COLLECTION_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":146.0}],"name":"DATABASE_DATA_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":32768.0}],"name":"DATABASE_STORAGE_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":45056.0}],"name":"DATABASE_INDEX_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":11.0}],"name":"DATABASE_INDEX_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":0.0}],"name":"DATABASE_EXTENT_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":1.0}],"name":"DATABASE_OBJECT_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:41Z","value":0.0}],"name":"DATABASE_VIEW_COUNT","units":"SCALAR"}],"processId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","start":"2025-07-22T05:18:41Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_config_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_config_measurements_1.snaphost new file mode 100644 index 0000000000..a6078430ab --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/databases_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_config_measurements_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 1741 +Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:08 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 152 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getSpecificDatabaseMeasurements +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"databaseName":"config","end":"2025-07-24T15:13:27Z","granularity":"PT30M","groupId":"68824baeb448981053345f1a","hostId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/databases/config/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":146.0}],"name":"DATABASE_AVERAGE_OBJECT_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":8.0}],"name":"DATABASE_COLLECTION_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":146.0}],"name":"DATABASE_DATA_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":32768.0}],"name":"DATABASE_STORAGE_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":45056.0}],"name":"DATABASE_INDEX_SIZE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":11.0}],"name":"DATABASE_INDEX_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"DATABASE_EXTENT_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1.0}],"name":"DATABASE_OBJECT_COUNT","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"DATABASE_VIEW_COUNT","units":"SCALAR"}],"processId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","start":"2025-07-24T15:13:27Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_1.snaphost deleted file mode 100644 index aa1e786add..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_databases_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 662 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:17 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 133 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getDatabaseMeasurementLinks -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/databases?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"databaseName":"config","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/databases/config","rel":"self"}]},{"databaseName":"local","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/databases/local","rel":"self"}]}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_1.snaphost new file mode 100644 index 0000000000..e7a6e98351 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/databases_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_databases_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 662 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:08 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getDatabaseMeasurementLinks +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/databases?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"databaseName":"config","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/databases/config","rel":"self"}]},{"databaseName":"local","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/databases/local","rel":"self"}]}],"totalCount":2} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_data_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_data_measurements_1.snaphost deleted file mode 100644 index bd15dc5826..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_data_measurements_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 3499 -Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 133 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getSpecificDiskMeasurements -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"end":"2025-07-22T05:18:17Z","granularity":"PT30M","groupId":"687f1d8e44f1ab3f84231649","hostId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/disks/data/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_IOPS_READ","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_IOPS_WRITE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_IOPS_TOTAL","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_LATENCY_READ","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_LATENCY_WRITE","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_THROUGHPUT_READ","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_PARTITION_THROUGHPUT_WRITE","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2.7968323584E10}],"name":"DISK_PARTITION_SPACE_FREE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":4.139073536E9}],"name":"DISK_PARTITION_SPACE_USED","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":87.1086605976486}],"name":"DISK_PARTITION_SPACE_PERCENT_FREE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":12.891339402351406}],"name":"DISK_PARTITION_SPACE_PERCENT_USED","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"DISK_QUEUE_DEPTH","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":5.0}],"name":"MAX_DISK_PARTITION_IOPS_READ","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":107.36842105263159}],"name":"MAX_DISK_PARTITION_IOPS_WRITE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":96.77419354838709}],"name":"MAX_DISK_PARTITION_IOPS_TOTAL","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.6}],"name":"MAX_DISK_PARTITION_LATENCY_READ","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1.5}],"name":"MAX_DISK_PARTITION_LATENCY_WRITE","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2.818009088E10}],"name":"MAX_DISK_PARTITION_SPACE_FREE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":4.139073536E9}],"name":"MAX_DISK_PARTITION_SPACE_USED","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":87.76821981139778}],"name":"MAX_DISK_PARTITION_SPACE_PERCENT_FREE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":12.891339402351404}],"name":"MAX_DISK_PARTITION_SPACE_PERCENT_USED","units":"PERCENT"}],"partitionName":"data","processId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","start":"2025-07-22T05:18:17Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_data_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_data_measurements_1.snaphost new file mode 100644 index 0000000000..27d8bb766a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/disks_describe/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_data_measurements_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 3674 +Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 159 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getSpecificDiskMeasurements +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"end":"2025-07-24T15:13:27Z","granularity":"PT30M","groupId":"68824baeb448981053345f1a","hostId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/disks/data/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.3572108192628118}],"name":"DISK_PARTITION_IOPS_READ","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":5.3298347760750575}],"name":"DISK_PARTITION_IOPS_WRITE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":5.687045595337869}],"name":"DISK_PARTITION_IOPS_TOTAL","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.5377777777777778}],"name":"DISK_PARTITION_LATENCY_READ","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1.6901227488956847}],"name":"DISK_PARTITION_LATENCY_WRITE","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1402.2783534373514}],"name":"DISK_PARTITION_THROUGHPUT_READ","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":117073.70555777042}],"name":"DISK_PARTITION_THROUGHPUT_WRITE","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.8034676053333332E10}],"name":"DISK_PARTITION_SPACE_FREE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":4.072721066666666E9}],"name":"DISK_PARTITION_SPACE_USED","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":87.31531848737208}],"name":"DISK_PARTITION_SPACE_PERCENT_FREE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":12.684681512627911}],"name":"DISK_PARTITION_SPACE_PERCENT_USED","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.009209783878439399}],"name":"DISK_QUEUE_DEPTH","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.66333998669328}],"name":"MAX_DISK_PARTITION_IOPS_READ","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":62.13140328368754}],"name":"MAX_DISK_PARTITION_IOPS_WRITE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":56.89964602766216}],"name":"MAX_DISK_PARTITION_IOPS_TOTAL","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.6666666666666666}],"name":"MAX_DISK_PARTITION_LATENCY_READ","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":7.865079365079365}],"name":"MAX_DISK_PARTITION_LATENCY_WRITE","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.8109942784E10}],"name":"MAX_DISK_PARTITION_SPACE_FREE","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":4.0763514879999995E9}],"name":"MAX_DISK_PARTITION_SPACE_USED","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":87.54974026371653}],"name":"MAX_DISK_PARTITION_SPACE_PERCENT_FREE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":12.695988630796862}],"name":"MAX_DISK_PARTITION_SPACE_PERCENT_USED","units":"PERCENT"}],"partitionName":"data","processId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","start":"2025-07-24T15:13:27Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_1.snaphost deleted file mode 100644 index 29d7a163e4..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_disks_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 445 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getDiskMeasurementLinks -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/disks?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/disks/data","rel":"self"}],"partitionName":"data"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_1.snaphost new file mode 100644 index 0000000000..689a16317c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/disks_list/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_disks_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 445 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:08 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 125 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getDiskMeasurementLinks +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/disks?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/disks/data","rel":"self"}],"partitionName":"data"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/memory.json b/test/e2e/testdata/.snapshots/TestMetrics/memory.json index d0ecebbf97..b837d21e9e 100644 --- a/test/e2e/testdata/.snapshots/TestMetrics/memory.json +++ b/test/e2e/testdata/.snapshots/TestMetrics/memory.json @@ -1 +1 @@ -{"TestMetrics/metricsGenerateClusterName":"metrics-802"} \ No newline at end of file +{"TestMetrics/metricsGenerateClusterName":"metrics-674"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost deleted file mode 100644 index 7376d8d5d8..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Connection: close -Content-Length: 17613 -Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 431 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getHostMeasurements -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"end":"2025-07-22T05:19:07Z","granularity":"PT30M","groupId":"687f1d8e44f1ab3f84231649","hostId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"ASSERT_REGULAR","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"ASSERT_WARNING","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"ASSERT_MSG","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"ASSERT_USER","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"CACHE_BYTES_READ_INTO","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"CACHE_BYTES_WRITTEN_FROM","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":234902.0}],"name":"CACHE_DIRTY_BYTES","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":266347.0}],"name":"CACHE_USED_BYTES","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.04961099475622177}],"name":"CACHE_FILL_RATIO","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.04375390708446503}],"name":"DIRTY_FILL_RATIO","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":48.0}],"name":"CONNECTIONS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"CURSORS_TOTAL_OPEN","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"CURSORS_TOTAL_TIMED_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":237568.0}],"name":"DB_STORAGE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":32227.0}],"name":"DB_DATA_SIZE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"DB_DATA_SIZE_TOTAL_WO_SYSTEM","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":237568.0}],"name":"DB_INDEX_SIZE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"DOCUMENT_METRICS_RETURNED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"DOCUMENT_METRICS_INSERTED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"DOCUMENT_METRICS_UPDATED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"DOCUMENT_METRICS_DELETED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"EXTRA_INFO_PAGE_FAULTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_TOTAL","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_READERS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_WRITERS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":242.0}],"name":"MEMORY_RESIDENT","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":4079.0}],"name":"MEMORY_VIRTUAL","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"MEMORY_MAPPED","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"NETWORK_BYTES_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"NETWORK_BYTES_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"NETWORK_NUM_REQUESTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_CMD","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_QUERY","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_UPDATE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_DELETE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_TTL_DELETED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_GETMORE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_INSERT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_REPL_CMD","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_REPL_UPDATE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_REPL_DELETE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPCOUNTER_REPL_INSERT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPERATIONS_SCAN_AND_ORDER","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OPERATIONS_QUERIES_KILLED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OP_EXECUTION_TIME_READS","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OP_EXECUTION_TIME_WRITES","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"OP_EXECUTION_TIME_COMMANDS","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"OPLOG_SLAVE_LAG_MASTER_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"OPLOG_REPLICATION_LAG_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":25.5}],"name":"OPLOG_MASTER_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":16.333333333333332}],"name":"OPLOG_MASTER_LAG_TIME_DIFF","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0027944999999999997}],"name":"OPLOG_RATE_GB_PER_HOUR","units":"GIGABYTES_PER_HOUR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"QUERY_EXECUTOR_SCANNED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"QUERY_EXECUTOR_SCANNED_OBJECTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"QUERY_TARGETING_SCANNED_PER_RETURNED","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":4.0}],"name":"TICKETS_AVAILABLE_READS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":4.0}],"name":"TICKETS_AVAILABLE_WRITE","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":0.0}],"name":"OPERATION_THROTTLING_REJECTED_OPERATIONS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:19:07Z","value":null}],"name":"QUERY_SPILL_TO_DISK_DURING_SORT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_NORMALIZED_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":null}],"name":"PROCESS_NORMALIZED_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":70.80745341614907}],"name":"MAX_PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2.1052631578947367}],"name":"MAX_PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_PROCESS_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_PROCESS_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":35.40372670807454}],"name":"MAX_PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1.0526315789473684}],"name":"MAX_PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_PROCESS_NORMALIZED_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_PROCESS_NORMALIZED_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_RESIDENT_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_VIRTUAL_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_SHARED_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_DISK_USAGE","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":18.776511134676564}],"name":"SYSTEM_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":6.090933191940616}],"name":"SYSTEM_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":5.782741251325557}],"name":"SYSTEM_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1.0935843054082715}],"name":"SYSTEM_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":16.652306468716862}],"name":"SYSTEM_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":9.388255567338282}],"name":"SYSTEM_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":3.045466595970308}],"name":"SYSTEM_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2.8913706256627787}],"name":"SYSTEM_NORMALIZED_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.5467921527041357}],"name":"SYSTEM_NORMALIZED_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":8.326153234358431}],"name":"SYSTEM_NORMALIZED_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2546507.7379374336}],"name":"SYSTEM_NETWORK_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":52271.19233828208}],"name":"SYSTEM_NETWORK_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"SWAP_IO_IN","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.4308059384941676}],"name":"SWAP_IO_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":68.90816326530611}],"name":"MAX_SYSTEM_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":19.95}],"name":"MAX_SYSTEM_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":93.4065934065934}],"name":"MAX_SYSTEM_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":8.0625}],"name":"MAX_SYSTEM_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":147.5696591659908}],"name":"MAX_SYSTEM_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":34.45408163265306}],"name":"MAX_SYSTEM_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":9.975}],"name":"MAX_SYSTEM_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":46.7032967032967}],"name":"MAX_SYSTEM_NORMALIZED_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":4.03125}],"name":"MAX_SYSTEM_NORMALIZED_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":73.7848295829954}],"name":"MAX_SYSTEM_NORMALIZED_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2.38565465E7}],"name":"MAX_SYSTEM_NETWORK_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":369192.5}],"name":"MAX_SYSTEM_NETWORK_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":0.0}],"name":"MAX_SWAP_IO_IN","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":10.991508491508492}],"name":"MAX_SWAP_IO_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":482436.0}],"name":"SYSTEM_MEMORY_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1263314.0}],"name":"SYSTEM_MEMORY_AVAILABLE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":258518.0}],"name":"SYSTEM_MEMORY_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":11826.0}],"name":"SYSTEM_MEMORY_SHARED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1147962.0}],"name":"SYSTEM_MEMORY_CACHED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1704.0}],"name":"SYSTEM_MEMORY_BUFFERS","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1024.0}],"name":"SWAP_USAGE_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":4193276.0}],"name":"SWAP_USAGE_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":534320.0}],"name":"MAX_SYSTEM_MEMORY_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1403656.0}],"name":"MAX_SYSTEM_MEMORY_AVAILABLE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":525998.0}],"name":"MAX_SYSTEM_MEMORY_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":12196.0}],"name":"MAX_SYSTEM_MEMORY_SHARED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1408440.0}],"name":"MAX_SYSTEM_MEMORY_CACHED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":2934.0}],"name":"MAX_SYSTEM_MEMORY_BUFFERS","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":1024.0}],"name":"MAX_SWAP_USAGE_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":4193788.0}],"name":"MAX_SWAP_USAGE_FREE","units":"KILOBYTES"}],"processId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","start":"2025-07-22T05:18:17Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost new file mode 100644 index 0000000000..fda0be37c1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/processes/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Connection: close +Content-Length: 17758 +Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:06 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 641 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getHostMeasurements +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"end":"2025-07-24T15:13:58Z","granularity":"PT30M","groupId":"68824baeb448981053345f1a","hostId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/measurements?granularity=PT30M&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"ASSERT_REGULAR","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"ASSERT_WARNING","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"ASSERT_MSG","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"ASSERT_USER","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"CACHE_BYTES_READ_INTO","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"CACHE_BYTES_WRITTEN_FROM","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":235774.0}],"name":"CACHE_DIRTY_BYTES","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":267349.0}],"name":"CACHE_USED_BYTES","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.04979763180017471}],"name":"CACHE_FILL_RATIO","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.043916329741477966}],"name":"DIRTY_FILL_RATIO","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":49.0}],"name":"CONNECTIONS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"CURSORS_TOTAL_OPEN","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"CURSORS_TOTAL_TIMED_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":237568.0}],"name":"DB_STORAGE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":32227.0}],"name":"DB_DATA_SIZE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"DB_DATA_SIZE_TOTAL_WO_SYSTEM","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":237568.0}],"name":"DB_INDEX_SIZE_TOTAL","units":"BYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"DOCUMENT_METRICS_RETURNED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"DOCUMENT_METRICS_INSERTED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"DOCUMENT_METRICS_UPDATED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"DOCUMENT_METRICS_DELETED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"EXTRA_INFO_PAGE_FAULTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_TOTAL","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_READERS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"GLOBAL_LOCK_CURRENT_QUEUE_WRITERS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":237.0}],"name":"MEMORY_RESIDENT","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":4080.0}],"name":"MEMORY_VIRTUAL","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"MEMORY_MAPPED","units":"MEGABYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"NETWORK_BYTES_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"NETWORK_BYTES_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"NETWORK_NUM_REQUESTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_CMD","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_QUERY","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_UPDATE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_DELETE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_TTL_DELETED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_GETMORE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_INSERT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_REPL_CMD","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_REPL_UPDATE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_REPL_DELETE","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPCOUNTER_REPL_INSERT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPERATIONS_SCAN_AND_ORDER","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OPERATIONS_QUERIES_KILLED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OP_EXECUTION_TIME_READS","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OP_EXECUTION_TIME_WRITES","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"OP_EXECUTION_TIME_COMMANDS","units":"MILLISECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"OPLOG_SLAVE_LAG_MASTER_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"OPLOG_REPLICATION_LAG_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":32.0}],"name":"OPLOG_MASTER_TIME","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":24.333333333333332}],"name":"OPLOG_MASTER_LAG_TIME_DIFF","units":"SECONDS"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0020682}],"name":"OPLOG_RATE_GB_PER_HOUR","units":"GIGABYTES_PER_HOUR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"QUERY_EXECUTOR_SCANNED","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"QUERY_EXECUTOR_SCANNED_OBJECTS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"QUERY_TARGETING_SCANNED_PER_RETURNED","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"QUERY_TARGETING_SCANNED_OBJECTS_PER_RETURNED","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":4.0}],"name":"TICKETS_AVAILABLE_READS","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":4.0}],"name":"TICKETS_AVAILABLE_WRITE","units":"SCALAR"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":0.0}],"name":"OPERATION_THROTTLING_REJECTED_OPERATIONS","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:58Z","value":null}],"name":"QUERY_SPILL_TO_DISK_DURING_SORT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":23.02924374099788}],"name":"PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.7606285705037952}],"name":"PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"PROCESS_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"PROCESS_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":11.51462187049894}],"name":"PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.3803142852518976}],"name":"PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"PROCESS_NORMALIZED_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"PROCESS_NORMALIZED_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":56.15317087071337}],"name":"MAX_PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":3.202636933121732}],"name":"MAX_PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_PROCESS_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_PROCESS_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":28.076585435356684}],"name":"MAX_PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1.601318466560866}],"name":"MAX_PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_PROCESS_NORMALIZED_CPU_CHILDREN_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_PROCESS_NORMALIZED_CPU_CHILDREN_KERNEL","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_RESIDENT_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_VIRTUAL_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_SHARED_MEMORY","units":"BYTES"},{"dataPoints":[],"name":"FTS_DISK_USAGE","units":"BYTES"},{"dataPoints":[],"name":"FTS_PROCESS_CPU_USER","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[],"name":"FTS_PROCESS_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":34.02620044812763}],"name":"SYSTEM_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.5371098814926487}],"name":"SYSTEM_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.2347416846217545}],"name":"SYSTEM_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.2886009116183915}],"name":"SYSTEM_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":110.13068943987905}],"name":"SYSTEM_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":17.013100224063816}],"name":"SYSTEM_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1.2685549407463244}],"name":"SYSTEM_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1.1173708423108772}],"name":"SYSTEM_NORMALIZED_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.14430045580919576}],"name":"SYSTEM_NORMALIZED_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SYSTEM_NORMALIZED_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":55.065344719939525}],"name":"SYSTEM_NORMALIZED_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":11291.89180842189}],"name":"SYSTEM_NETWORK_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":20974.610562870606}],"name":"SYSTEM_NETWORK_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SWAP_IO_IN","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"SWAP_IO_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":85.62071262071262}],"name":"MAX_SYSTEM_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":12.679665295944366}],"name":"MAX_SYSTEM_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":77.38405797101449}],"name":"MAX_SYSTEM_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":5.862335148757349}],"name":"MAX_SYSTEM_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":158.80724050098922}],"name":"MAX_SYSTEM_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":42.81035631035631}],"name":"MAX_SYSTEM_NORMALIZED_CPU_USER","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":6.339832647972183}],"name":"MAX_SYSTEM_NORMALIZED_CPU_KERNEL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_NICE","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":38.69202898550724}],"name":"MAX_SYSTEM_NORMALIZED_CPU_IOWAIT","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_IRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.9311675743786747}],"name":"MAX_SYSTEM_NORMALIZED_CPU_SOFTIRQ","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SYSTEM_NORMALIZED_CPU_GUEST","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":79.40362025049461}],"name":"MAX_SYSTEM_NORMALIZED_CPU_STEAL","units":"PERCENT"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":6428952.0}],"name":"MAX_SYSTEM_NETWORK_IN","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":237428.66666666666}],"name":"MAX_SYSTEM_NETWORK_OUT","units":"BYTES_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":0.0}],"name":"MAX_SWAP_IO_IN","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2.0761245674740483}],"name":"MAX_SWAP_IO_OUT","units":"SCALAR_PER_SECOND"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":493289.3333333333}],"name":"SYSTEM_MEMORY_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1253488.0}],"name":"SYSTEM_MEMORY_AVAILABLE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":310828.0}],"name":"SYSTEM_MEMORY_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":704.0}],"name":"SYSTEM_MEMORY_SHARED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1084642.6666666665}],"name":"SYSTEM_MEMORY_CACHED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1860.0}],"name":"SYSTEM_MEMORY_BUFFERS","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":256.0}],"name":"SWAP_USAGE_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":4194043.9999999995}],"name":"SWAP_USAGE_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":542333.3333333333}],"name":"MAX_SYSTEM_MEMORY_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1323396.0}],"name":"MAX_SYSTEM_MEMORY_AVAILABLE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":402036.0}],"name":"MAX_SYSTEM_MEMORY_FREE","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":738.6666666666666}],"name":"MAX_SYSTEM_MEMORY_SHARED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":1212218.6666666665}],"name":"MAX_SYSTEM_MEMORY_CACHED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":2628.0}],"name":"MAX_SYSTEM_MEMORY_BUFFERS","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":256.0}],"name":"MAX_SWAP_USAGE_USED","units":"KILOBYTES"},{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":4194129.333333333}],"name":"MAX_SWAP_USAGE_FREE","units":"KILOBYTES"}],"processId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","start":"2025-07-24T15:13:27Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost deleted file mode 100644 index c9ea38d0e5..0000000000 --- a/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_687f1d8e44f1ab3f84231649_processes_atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net_27017_measurements_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 813 -Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 117 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessMeasurementsResource::getHostMeasurements -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"end":"2025-07-22T05:18:17Z","granularity":"PT30M","groupId":"687f1d8e44f1ab3f84231649","hostId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017/measurements?granularity=PT30M&m=MAX_PROCESS_CPU_USER&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8e44f1ab3f84231649/processes/atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-22T05:18:17Z","value":70.80745341614907}],"name":"MAX_PROCESS_CPU_USER","units":"PERCENT"}],"processId":"atlas-11xi29-shard-00-00.8bkzkj.mongodb-dev.net:27017","start":"2025-07-22T05:18:17Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost b/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost new file mode 100644 index 0000000000..eb95b6d3d5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestMetrics/processes_with_type/GET_api_atlas_v2_groups_68824baeb448981053345f1a_processes_atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net_27017_measurements_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 813 +Cache-Control: no-cache, no-transform, must-revalidate, proxy-revalidate, max-age=0 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:07 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 201 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessMeasurementsResource::getHostMeasurements +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"end":"2025-07-24T15:13:27Z","granularity":"PT30M","groupId":"68824baeb448981053345f1a","hostId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017/measurements?granularity=PT30M&m=MAX_PROCESS_CPU_USER&period=P1DT12H","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824baeb448981053345f1a/processes/atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","rel":"https://cloud.mongodb.com/host"}],"measurements":[{"dataPoints":[{"timestamp":"2025-07-24T15:13:27Z","value":56.15317087071337}],"name":"MAX_PROCESS_CPU_USER","units":"PERCENT"}],"processId":"atlas-4phap8-shard-00-00.pvilu4.mongodb-dev.net:27017","start":"2025-07-24T15:13:27Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost deleted file mode 100644 index d6c8c06827..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 453 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 754 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::createOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f6da799aa2ae9e81366","clusterName":"onlineArchives-855","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"687f1d78a799aa2ae9e80368","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost new file mode 100644 index 0000000000..bab9d96791 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Create/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 453 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 844 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::createOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824d8f42be0f23307f4aed","clusterName":"onlineArchives-660","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"68824bae42be0f23307f3a70","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 735e3c4dcb..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 279 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::deleteOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..8cda44fff6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Delete/DELETE_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 280 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::deleteOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 5d05d3e1fa..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 453 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f6da799aa2ae9e81366","clusterName":"onlineArchives-855","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"687f1d78a799aa2ae9e80368","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..a7e8405c0d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Describe/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 453 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824d8f42be0f23307f4aed","clusterName":"onlineArchives-660","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"68824bae42be0f23307f3a70","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_1.snaphost deleted file mode 100644 index 66cfb36454..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1834 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:22Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d78a799aa2ae9e80368","id":"687f1d7aa799aa2ae9e80465","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-855","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7aa799aa2ae9e80445","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7aa799aa2ae9e8045d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_2.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_2.snaphost deleted file mode 100644 index 179995906f..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1920 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 123 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:22Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d78a799aa2ae9e80368","id":"687f1d7aa799aa2ae9e80465","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-855","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7aa799aa2ae9e8045e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7aa799aa2ae9e8045d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_3.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_3.snaphost deleted file mode 100644 index 9e44cdc015..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2249 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:41 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://onlinearchives-855-shard-00-00.hbgsmk.mongodb-dev.net:27017,onlinearchives-855-shard-00-01.hbgsmk.mongodb-dev.net:27017,onlinearchives-855-shard-00-02.hbgsmk.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-1jbvav-shard-0","standardSrv":"mongodb+srv://onlinearchives-855.hbgsmk.mongodb-dev.net"},"createDate":"2025-07-22T05:11:22Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d78a799aa2ae9e80368","id":"687f1d7aa799aa2ae9e80465","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-855","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d7aa799aa2ae9e8045e","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7aa799aa2ae9e8045d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_provider_regions_1.snaphost deleted file mode 100644 index 60093452c7..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_1.snaphost new file mode 100644 index 0000000000..7a2c8fe8cd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1834 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 122 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bae42be0f23307f3a70","id":"68824bb142be0f23307f3b71","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-660","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb142be0f23307f3b59","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb142be0f23307f3b61","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_2.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_2.snaphost new file mode 100644 index 0000000000..a5a0b23ab5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1920 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bae42be0f23307f3a70","id":"68824bb142be0f23307f3b71","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-660","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb142be0f23307f3b62","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb142be0f23307f3b61","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_3.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_3.snaphost new file mode 100644 index 0000000000..ecfddb3132 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2249 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://onlinearchives-660-shard-00-00.si6ocr.mongodb-dev.net:27017,onlinearchives-660-shard-00-01.si6ocr.mongodb-dev.net:27017,onlinearchives-660-shard-00-02.si6ocr.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-b7nmb6-shard-0","standardSrv":"mongodb+srv://onlinearchives-660.si6ocr.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bae42be0f23307f3a70","id":"68824bb142be0f23307f3b71","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-660","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb142be0f23307f3b62","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb142be0f23307f3b61","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..c508160d9d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 744eaacdfc..aa64f599ed 100644 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:21 GMT +Date: Thu, 24 Jul 2025 15:05:20 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost deleted file mode 100644 index 5fb15d036e..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 671 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchives -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/onlineArchives?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"687f1f6da799aa2ae9e81366","clusterName":"onlineArchives-855","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"687f1d78a799aa2ae9e80368","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost new file mode 100644 index 0000000000..f595159ca5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/List/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 671 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 93 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchives +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/onlineArchives?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"68824d8f42be0f23307f4aed","clusterName":"onlineArchives-660","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":3,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"68824bae42be0f23307f3a70","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_1.snaphost index 6b04d6301f..cb6d90036d 100644 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1074 +Content-Length: 1076 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT +Date: Thu, 24 Jul 2025 15:05:18 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1317 +X-Envoy-Upstream-Service-Time: 1911 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:21Z","id":"687f1d78a799aa2ae9e80368","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"onlineArchives-e2e-9","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:20Z","id":"68824bae42be0f23307f3a70","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"onlineArchives-e2e-145","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_1.snaphost deleted file mode 100644 index 1c61fbabc7..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1824 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:22 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 628 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:22Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d78a799aa2ae9e80368","id":"687f1d7aa799aa2ae9e80465","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d78a799aa2ae9e80368/clusters/onlineArchives-855/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-855","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7aa799aa2ae9e80445","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d7aa799aa2ae9e8045d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_1.snaphost new file mode 100644 index 0000000000..79f66cf456 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/POST_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1824 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 694 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bae42be0f23307f3a70","id":"68824bb142be0f23307f3b71","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bae42be0f23307f3a70/clusters/onlineArchives-660/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"onlineArchives-660","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bb142be0f23307f3b59","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb142be0f23307f3b61","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 64f3bd0bdd..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 409 Conflict -Content-Length: 174 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:19:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 95 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"An archive must be in an active state in order to be paused.","error":409,"errorCode":"ONLINE_ARCHIVE_MUST_BE_ACTIVE_TO_PAUSE","parameters":[],"reason":"Conflict"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..d03ceaaf66 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Pause/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 409 Conflict +Content-Length: 174 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:13:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"An archive must be in an active state in order to be paused.","error":409,"errorCode":"ONLINE_ARCHIVE_MUST_BE_ACTIVE_TO_PAUSE","parameters":[],"reason":"Conflict"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 31c85d18a7..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 169 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:19:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"The request contained modifications to immutable fields.","error":400,"errorCode":"ONLINE_ARCHIVE_CANNOT_MODIFY_FIELD","parameters":[],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..b86bab6f3f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Start/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 169 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:13:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"The request contained modifications to immutable fields.","error":400,"errorCode":"ONLINE_ARCHIVE_CANNOT_MODIFY_FIELD","parameters":[],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 1539fc6858..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 453 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 132 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f6da799aa2ae9e81366","clusterName":"onlineArchives-855","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":4,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"687f1d78a799aa2ae9e80368","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..5bb6249c8d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Update/PATCH_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 453 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::updateOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824d8f42be0f23307f4aed","clusterName":"onlineArchives-660","collName":"test","collectionType":"STANDARD","criteria":{"dateField":"test","dateFormat":"ISODATE","expireAfterDays":4,"type":"DATE"},"dataProcessRegion":{"cloudProvider":"AWS","region":"US_EAST_1"},"dbName":"test","groupId":"68824bae42be0f23307f3a70","partitionFields":[{"fieldName":"test","fieldType":null,"order":0}],"paused":false,"schedule":{"type":"DEFAULT"},"state":"PENDING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost deleted file mode 100644 index 3f6f7e4249..0000000000 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_687f1d78a799aa2ae9e80368_clusters_onlineArchives-855_onlineArchives_687f1f6da799aa2ae9e81366_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 213 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:19:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchive -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot find resource Online archive with id 687f1f6da799aa2ae9e81366.","error":404,"errorCode":"RESOURCE_NOT_FOUND","parameters":["Online archive with id 687f1f6da799aa2ae9e81366"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost b/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost new file mode 100644 index 0000000000..eddc50cc05 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/Watch/GET_api_atlas_v2_groups_68824bae42be0f23307f3a70_clusters_onlineArchives-660_onlineArchives_68824d8f42be0f23307f4aed_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 213 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:13:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 70 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasOnlineArchiveResource::getOnlineArchive +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot find resource Online archive with id 68824d8f42be0f23307f4aed.","error":404,"errorCode":"RESOURCE_NOT_FOUND","parameters":["Online archive with id 68824d8f42be0f23307f4aed"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestOnlineArchives/memory.json b/test/e2e/testdata/.snapshots/TestOnlineArchives/memory.json index c3f697a573..09bc306fc6 100644 --- a/test/e2e/testdata/.snapshots/TestOnlineArchives/memory.json +++ b/test/e2e/testdata/.snapshots/TestOnlineArchives/memory.json @@ -1 +1 @@ -{"TestOnlineArchives/onlineArchivesGenerateClusterName":"onlineArchives-855"} \ No newline at end of file +{"TestOnlineArchives/onlineArchivesGenerateClusterName":"onlineArchives-660"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/0e40e1581b361e890b66ae0a9d4f5ab834c5ed98_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/0e40e1581b361e890b66ae0a9d4f5ab834c5ed98_1.snaphost deleted file mode 100644 index 909095fdc2..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/0e40e1581b361e890b66ae0a9d4f5ab834c5ed98_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1883 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:05 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:18:27Z","groupId":"687f1d7b44f1ab3f84231249","hostname":"atlas-130gab-shard-00-00.enq1k2.mongodb-dev.net","id":"atlas-130gab-shard-00-00.enq1k2.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/processes/atlas-130gab-shard-00-00.enq1k2.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-130gab-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"performanceadvisor-22-shard-00-00.enq1k2.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:18:27Z","groupId":"687f1d7b44f1ab3f84231249","hostname":"atlas-130gab-shard-00-01.enq1k2.mongodb-dev.net","id":"atlas-130gab-shard-00-01.enq1k2.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/processes/atlas-130gab-shard-00-01.enq1k2.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-130gab-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"performanceadvisor-22-shard-00-01.enq1k2.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:18:27Z","groupId":"687f1d7b44f1ab3f84231249","hostname":"atlas-130gab-shard-00-02.enq1k2.mongodb-dev.net","id":"atlas-130gab-shard-00-02.enq1k2.mongodb-dev.net:27017","lastPing":"2025-07-22T05:19:04Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/processes/atlas-130gab-shard-00-02.enq1k2.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-130gab-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"performanceadvisor-22-shard-00-02.enq1k2.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/587360b2f68541e057aeabc36a0d3c7e124fb858_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/587360b2f68541e057aeabc36a0d3c7e124fb858_1.snaphost new file mode 100644 index 0000000000..94ce3f2763 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/587360b2f68541e057aeabc36a0d3c7e124fb858_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1886 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 132 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:13:36Z","groupId":"68824b9cb448981053345c3f","hostname":"atlas-8dbjkl-shard-00-00.qxhrxk.mongodb-dev.net","id":"atlas-8dbjkl-shard-00-00.qxhrxk.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/processes/atlas-8dbjkl-shard-00-00.qxhrxk.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-8dbjkl-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"performanceadvisor-926-shard-00-00.qxhrxk.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:13:36Z","groupId":"68824b9cb448981053345c3f","hostname":"atlas-8dbjkl-shard-00-01.qxhrxk.mongodb-dev.net","id":"atlas-8dbjkl-shard-00-01.qxhrxk.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/processes/atlas-8dbjkl-shard-00-01.qxhrxk.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-8dbjkl-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"performanceadvisor-926-shard-00-01.qxhrxk.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:13:36Z","groupId":"68824b9cb448981053345c3f","hostname":"atlas-8dbjkl-shard-00-02.qxhrxk.mongodb-dev.net","id":"atlas-8dbjkl-shard-00-02.qxhrxk.mongodb-dev.net:27017","lastPing":"2025-07-24T15:14:18Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/processes/atlas-8dbjkl-shard-00-02.qxhrxk.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-8dbjkl-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"performanceadvisor-926-shard-00-02.qxhrxk.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/5e2fbdf2c9b7b5373dd88f727689fa57442a8014_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/5e2fbdf2c9b7b5373dd88f727689fa57442a8014_1.snaphost index 6d87af3e46..d8844abbfe 100644 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/5e2fbdf2c9b7b5373dd88f727689fa57442a8014_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/5e2fbdf2c9b7b5373dd88f727689fa57442a8014_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:26 GMT +Date: Thu, 24 Jul 2025 15:05:02 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_1.snaphost deleted file mode 100644 index ccbe6a82f9..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1846 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7b44f1ab3f84231249","id":"687f1d8044f1ab3f84231410","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-22","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7f44f1ab3f842313d2","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f84231400","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_2.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_2.snaphost deleted file mode 100644 index 89e3881018..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1932 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 117 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7b44f1ab3f84231249","id":"687f1d8044f1ab3f84231410","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-22","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f84231401","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f84231400","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_3.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_3.snaphost deleted file mode 100644 index c0509cfbe5..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/799192733dcdc168c1f50b9a168a90c98e7f7df3_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2273 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://performanceadvisor-22-shard-00-00.enq1k2.mongodb-dev.net:27017,performanceadvisor-22-shard-00-01.enq1k2.mongodb-dev.net:27017,performanceadvisor-22-shard-00-02.enq1k2.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-130gab-shard-0","standardSrv":"mongodb+srv://performanceadvisor-22.enq1k2.mongodb-dev.net"},"createDate":"2025-07-22T05:11:28Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7b44f1ab3f84231249","id":"687f1d8044f1ab3f84231410","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-22","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8044f1ab3f84231401","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f84231400","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/76244254885c705f3f5ca94366c333a102b67569_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/76244254885c705f3f5ca94366c333a102b67569_1.snaphost deleted file mode 100644 index 17f619196c..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/76244254885c705f3f5ca94366c333a102b67569_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 94 -X-Frame-Options: DENY -X-Java-Method: ApiManagedSlowMsResource::disableManageSlowMs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/90c2f391954391b5bf9958d8f1c85c782054e254_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/90c2f391954391b5bf9958d8f1c85c782054e254_1.snaphost new file mode 100644 index 0000000000..f5231743f0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Disable_Managed_Slow_Operation_Threshold/90c2f391954391b5bf9958d8f1c85c782054e254_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiManagedSlowMsResource::disableManageSlowMs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/b287677f30e3245222adacf38c8fbe25195a57dd_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/b287677f30e3245222adacf38c8fbe25195a57dd_1.snaphost deleted file mode 100644 index c82412146f..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/b287677f30e3245222adacf38c8fbe25195a57dd_1.snaphost +++ /dev/null @@ -1,15 +0,0 @@ -HTTP/2.0 204 No Content -Content-Length: 0 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:07 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 106 -X-Frame-Options: DENY -X-Java-Method: ApiManagedSlowMsResource::enableManageSlowMs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/fd1035e54fbf799304eb079b4905b8156319d524_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/fd1035e54fbf799304eb079b4905b8156319d524_1.snaphost new file mode 100644 index 0000000000..4e0a30bc7d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/Enable_Managed_Slow_Operation_Threshold/fd1035e54fbf799304eb079b4905b8156319d524_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 204 No Content +Content-Length: 0 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiManagedSlowMsResource::enableManageSlowMs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/8637606741eb7f965f6757a46648f4031a9a8960_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/8637606741eb7f965f6757a46648f4031a9a8960_1.snaphost new file mode 100644 index 0000000000..08ef19a1eb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/8637606741eb7f965f6757a46648f4031a9a8960_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 133 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPerformanceAdvisorResource::getNamespaces +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"namespaces":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/ffca0650aa12cdfee85f800b4a42d83f658b52d7_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/ffca0650aa12cdfee85f800b4a42d83f658b52d7_1.snaphost deleted file mode 100644 index 7cf7a71716..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_namespaces/ffca0650aa12cdfee85f800b4a42d83f658b52d7_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:05 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 202 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPerformanceAdvisorResource::getNamespaces -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"namespaces":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/478544e40da8f1f4d27363f000af6978fdb22c24_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/478544e40da8f1f4d27363f000af6978fdb22c24_1.snaphost deleted file mode 100644 index 24ac1ed95a..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/478544e40da8f1f4d27363f000af6978fdb22c24_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 18 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 294 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPerformanceAdvisorResource::getSlowQueryLogs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"slowQueries":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/89e555417d5ae0671391ec6b63bd78dbcf14ce6e_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/89e555417d5ae0671391ec6b63bd78dbcf14ce6e_1.snaphost new file mode 100644 index 0000000000..221763fad1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_slow_query_logs/89e555417d5ae0671391ec6b63bd78dbcf14ce6e_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 18 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 202 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPerformanceAdvisorResource::getSlowQueryLogs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"slowQueries":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/4515cd646637b338ca6906cf216d2e0a2f845c48_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/4515cd646637b338ca6906cf216d2e0a2f845c48_1.snaphost new file mode 100644 index 0000000000..a687a44dde --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/4515cd646637b338ca6906cf216d2e0a2f845c48_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 35 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 699 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPerformanceAdvisorResource::getSuggestedIndexes +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"shapes":[],"suggestedIndexes":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/661793fb0ac4e53b00b90594de92554b00dd44f9_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/661793fb0ac4e53b00b90594de92554b00dd44f9_1.snaphost deleted file mode 100644 index b1a33dee56..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/List_suggested_indexes/661793fb0ac4e53b00b90594de92554b00dd44f9_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 35 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:07 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 198 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPerformanceAdvisorResource::getSuggestedIndexes -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"shapes":[],"suggestedIndexes":[]} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/a2d2202c41ead3cbbe50610384361ec85cbb5964_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/a2d2202c41ead3cbbe50610384361ec85cbb5964_1.snaphost deleted file mode 100644 index 330ed34e30..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/a2d2202c41ead3cbbe50610384361ec85cbb5964_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_1.snaphost new file mode 100644 index 0000000000..99939d2e87 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1850 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 125 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:03Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9cb448981053345c3f","id":"68824b9f42be0f23307f36f9","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-926","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9e42be0f23307f36e8","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9f42be0f23307f36f0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_2.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_2.snaphost new file mode 100644 index 0000000000..002cc33bda --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1936 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:03 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9cb448981053345c3f","id":"68824b9f42be0f23307f36f9","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-926","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9f42be0f23307f36f1","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9f42be0f23307f36f0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_3.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_3.snaphost new file mode 100644 index 0000000000..a0bcdc0161 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2285 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 126 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://performanceadvisor-926-shard-00-00.qxhrxk.mongodb-dev.net:27017,performanceadvisor-926-shard-00-01.qxhrxk.mongodb-dev.net:27017,performanceadvisor-926-shard-00-02.qxhrxk.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8dbjkl-shard-0","standardSrv":"mongodb+srv://performanceadvisor-926.qxhrxk.mongodb-dev.net"},"createDate":"2025-07-24T15:05:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9cb448981053345c3f","id":"68824b9f42be0f23307f36f9","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-926","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9f42be0f23307f36f1","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9f42be0f23307f36f0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_4.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_4.snaphost new file mode 100644 index 0000000000..c0493754d1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/d4a7503197ed0ab2503227d334dc08d3ad9e552d_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2281 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://performanceadvisor-926-shard-00-00.qxhrxk.mongodb-dev.net:27017,performanceadvisor-926-shard-00-01.qxhrxk.mongodb-dev.net:27017,performanceadvisor-926-shard-00-02.qxhrxk.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-8dbjkl-shard-0","standardSrv":"mongodb+srv://performanceadvisor-926.qxhrxk.mongodb-dev.net"},"createDate":"2025-07-24T15:05:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9cb448981053345c3f","id":"68824b9f42be0f23307f36f9","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-926","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9f42be0f23307f36f1","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9f42be0f23307f36f0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/e992879458e1e54fd8b6cbd8c58278e82f8fa194_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/e992879458e1e54fd8b6cbd8c58278e82f8fa194_1.snaphost new file mode 100644 index 0000000000..45d4af47ca --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/e992879458e1e54fd8b6cbd8c58278e82f8fa194_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f155facb61948b30c7b53782e569de1fdf3dc367_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f155facb61948b30c7b53782e569de1fdf3dc367_1.snaphost deleted file mode 100644 index 29080d24d7..0000000000 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f155facb61948b30c7b53782e569de1fdf3dc367_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1836 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 743 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:28Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7b44f1ab3f84231249","id":"687f1d8044f1ab3f84231410","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters/performanceAdvisor-22/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-22","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d7f44f1ab3f842313d2","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8044f1ab3f84231400","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f203547d7ad0d748813fcc178141cb89eeb026ac_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f203547d7ad0d748813fcc178141cb89eeb026ac_1.snaphost new file mode 100644 index 0000000000..46acd621fa --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/f203547d7ad0d748813fcc178141cb89eeb026ac_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1840 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:02 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 694 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:03Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9cb448981053345c3f","id":"68824b9f42be0f23307f36f9","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters/performanceAdvisor-926/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"performanceAdvisor-926","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9e42be0f23307f36e8","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9f42be0f23307f36f0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/fd5ee34c9fccd0941e181b0ece95d180e16cdfc9_1.snaphost b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/fd5ee34c9fccd0941e181b0ece95d180e16cdfc9_1.snaphost index f05118cec1..4aedaf8b4a 100644 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/fd5ee34c9fccd0941e181b0ece95d180e16cdfc9_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/fd5ee34c9fccd0941e181b0ece95d180e16cdfc9_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1080 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:23 GMT +Date: Thu, 24 Jul 2025 15:05:00 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2790 +X-Envoy-Upstream-Service-Time: 1471 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:26Z","id":"687f1d7b44f1ab3f84231249","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7b44f1ab3f84231249/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"performanceAdvisor-e2e-242","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:02Z","id":"68824b9cb448981053345c3f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9cb448981053345c3f/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"performanceAdvisor-e2e-113","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/memory.json b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/memory.json index a03ae4b51d..d7ddfb943b 100644 --- a/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/memory.json +++ b/test/e2e/testdata/.snapshots/TestPerformanceAdvisor/memory.json @@ -1 +1 @@ -{"TestPerformanceAdvisor/performanceAdvisorGenerateClusterName":"performanceAdvisor-22"} \ No newline at end of file +{"TestPerformanceAdvisor/performanceAdvisorGenerateClusterName":"performanceAdvisor-926"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_endpointService_1.snaphost deleted file mode 100644 index afc3b57029..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 173 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 182 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","endpointServiceName":null,"errorMessage":null,"id":"687f1db0a799aa2ae9e80ade","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_endpointService_1.snaphost new file mode 100644 index 0000000000..6206002c2a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Create/POST_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 173 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 187 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","endpointServiceName":null,"errorMessage":null,"id":"68824b8f42be0f23307f3515","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost deleted file mode 100644 index dfde024f67..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:14:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 125 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost new file mode 100644 index 0000000000..6c6f2e0b51 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Delete/DELETE_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 135 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost deleted file mode 100644 index 9d83919eb1..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 225 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:14:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 67 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0d027e5e60d0290f9","errorMessage":null,"id":"687f1db0a799aa2ae9e80ade","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost new file mode 100644 index 0000000000..bdede91c12 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Describe/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 225 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 80 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0dbb53e4bd997901e","errorMessage":null,"id":"68824b8f42be0f23307f3515","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_1.snaphost deleted file mode 100644 index 33d98710a1..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 227 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:14:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0d027e5e60d0290f9","errorMessage":null,"id":"687f1db0a799aa2ae9e80ade","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_1.snaphost new file mode 100644 index 0000000000..3563f16fab --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/List/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 227 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 80 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0dbb53e4bd997901e","errorMessage":null,"id":"68824b8f42be0f23307f3515","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost index dd49b5e258..e3c9910fe1 100644 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1081 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:14 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1676 +X-Envoy-Upstream-Service-Time: 1455 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:15Z","id":"687f1dae44f1ab3f842319cd","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1dae44f1ab3f842319cd/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsAWS-e2e-297","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:46Z","id":"68824b8db448981053345ab6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8db448981053345ab6/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsAWS-e2e-531","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost deleted file mode 100644 index e179733a35..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 173 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","endpointServiceName":null,"errorMessage":null,"id":"687f1db0a799aa2ae9e80ade","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_2.snaphost deleted file mode 100644 index c920044090..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_687f1dae44f1ab3f842319cd_privateEndpoint_AWS_endpointService_687f1db0a799aa2ae9e80ade_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 225 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:14:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0d027e5e60d0290f9","errorMessage":null,"id":"687f1db0a799aa2ae9e80ade","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost new file mode 100644 index 0000000000..679e76d689 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 173 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","endpointServiceName":null,"errorMessage":null,"id":"68824b8f42be0f23307f3515","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_2.snaphost new file mode 100644 index 0000000000..3e7c1d6d06 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAWS/Watch/GET_api_atlas_v2_groups_68824b8db448981053345ab6_privateEndpoint_AWS_endpointService_68824b8f42be0f23307f3515_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 225 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 74 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","endpointServiceName":"com.amazonaws.vpce.us-east-2.vpce-svc-0dbb53e4bd997901e","errorMessage":null,"id":"68824b8f42be0f23307f3515","interfaceEndpoints":[],"regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_endpointService_1.snaphost deleted file mode 100644 index 2fee0f67d3..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 215 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 141 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AZURE","errorMessage":null,"id":"687f1e54a799aa2ae9e80f52","privateEndpoints":[],"privateLinkServiceName":null,"privateLinkServiceResourceId":null,"regionName":"EUROPE_NORTH","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_endpointService_1.snaphost new file mode 100644 index 0000000000..67cc440466 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Create/POST_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 212 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 179 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AZURE","errorMessage":null,"id":"68824c2b42be0f23307f43b0","privateEndpoints":[],"privateLinkServiceName":null,"privateLinkServiceResourceId":null,"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost deleted file mode 100644 index a1ba5e558b..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost new file mode 100644 index 0000000000..16813d47ae --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Delete/DELETE_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 130 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost deleted file mode 100644 index 24e1b006d7..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 418 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 81 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AZURE","errorMessage":null,"id":"687f1e54a799aa2ae9e80f52","privateEndpoints":[],"privateLinkServiceName":"pls_687f1e54a799aa2ae9e80f52","privateLinkServiceResourceId":"/subscriptions/4e133d35-e734-4380-a565-c0945535da37/resourceGroups/rg_687f1e54a799aa2ae9e80f53_y8zdx6kv/providers/Microsoft.Network/privateLinkServices/pls_687f1e54a799aa2ae9e80f52","regionName":"EUROPE_NORTH","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost new file mode 100644 index 0000000000..5393481f2f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Describe/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 415 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 71 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AZURE","errorMessage":null,"id":"68824c2b42be0f23307f43b0","privateEndpoints":[],"privateLinkServiceName":"pls_68824c2b42be0f23307f43b0","privateLinkServiceResourceId":"/subscriptions/6c4da9d6-3e0c-44a8-b20f-8cf160317c39/resourceGroups/rg_68824c2b42be0f23307f43b1_rqfl4ikw/providers/Microsoft.Network/privateLinkServices/pls_68824c2b42be0f23307f43b0","regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_1.snaphost deleted file mode 100644 index b501f6b6a9..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 420 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"cloudProvider":"AZURE","errorMessage":null,"id":"687f1e54a799aa2ae9e80f52","privateEndpoints":[],"privateLinkServiceName":"pls_687f1e54a799aa2ae9e80f52","privateLinkServiceResourceId":"/subscriptions/4e133d35-e734-4380-a565-c0945535da37/resourceGroups/rg_687f1e54a799aa2ae9e80f53_y8zdx6kv/providers/Microsoft.Network/privateLinkServices/pls_687f1e54a799aa2ae9e80f52","regionName":"EUROPE_NORTH","status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_1.snaphost new file mode 100644 index 0000000000..c6de38e4c5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/List/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 417 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 63 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"cloudProvider":"AZURE","errorMessage":null,"id":"68824c2b42be0f23307f43b0","privateEndpoints":[],"privateLinkServiceName":"pls_68824c2b42be0f23307f43b0","privateLinkServiceResourceId":"/subscriptions/6c4da9d6-3e0c-44a8-b20f-8cf160317c39/resourceGroups/rg_68824c2b42be0f23307f43b1_rqfl4ikw/providers/Microsoft.Network/privateLinkServices/pls_68824c2b42be0f23307f43b0","regionName":"US_EAST_2","status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/POST_api_atlas_v2_groups_1.snaphost index 30f526da25..123abcc1c3 100644 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1083 +Content-Length: 1082 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:14:58 GMT +Date: Thu, 24 Jul 2025 15:07:21 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1786 +X-Envoy-Upstream-Service-Time: 2052 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:15:00Z","id":"687f1e5244f1ab3f84231f96","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e5244f1ab3f84231f96/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsAzure-e2e-361","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:07:23Z","id":"68824c2942be0f23307f434d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c2942be0f23307f434d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsAzure-e2e-75","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost deleted file mode 100644 index 1719e220d4..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 215 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AZURE","errorMessage":null,"id":"687f1e54a799aa2ae9e80f52","privateEndpoints":[],"privateLinkServiceName":null,"privateLinkServiceResourceId":null,"regionName":"EUROPE_NORTH","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_2.snaphost deleted file mode 100644 index cda93331fa..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_687f1e5244f1ab3f84231f96_privateEndpoint_AZURE_endpointService_687f1e54a799aa2ae9e80f52_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 418 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 62 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AZURE","errorMessage":null,"id":"687f1e54a799aa2ae9e80f52","privateEndpoints":[],"privateLinkServiceName":"pls_687f1e54a799aa2ae9e80f52","privateLinkServiceResourceId":"/subscriptions/4e133d35-e734-4380-a565-c0945535da37/resourceGroups/rg_687f1e54a799aa2ae9e80f53_y8zdx6kv/providers/Microsoft.Network/privateLinkServices/pls_687f1e54a799aa2ae9e80f52","regionName":"EUROPE_NORTH","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost new file mode 100644 index 0000000000..93669774bb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 212 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 79 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AZURE","errorMessage":null,"id":"68824c2b42be0f23307f43b0","privateEndpoints":[],"privateLinkServiceName":null,"privateLinkServiceResourceId":null,"regionName":"US_EAST_2","status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_2.snaphost new file mode 100644 index 0000000000..46564dac2e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/Watch/GET_api_atlas_v2_groups_68824c2942be0f23307f434d_privateEndpoint_AZURE_endpointService_68824c2b42be0f23307f43b0_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 415 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 67 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AZURE","errorMessage":null,"id":"68824c2b42be0f23307f43b0","privateEndpoints":[],"privateLinkServiceName":"pls_68824c2b42be0f23307f43b0","privateLinkServiceResourceId":"/subscriptions/6c4da9d6-3e0c-44a8-b20f-8cf160317c39/resourceGroups/rg_68824c2b42be0f23307f43b1_rqfl4ikw/providers/Microsoft.Network/privateLinkServices/pls_68824c2b42be0f23307f43b0","regionName":"US_EAST_2","status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/memory.json b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/memory.json index b910534c47..0f0e4e2856 100644 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/memory.json +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsAzure/memory.json @@ -1 +1 @@ -{"TestPrivateEndpointsAzure/rand":"AQ=="} \ No newline at end of file +{"TestPrivateEndpointsAzure/rand":""} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_endpointService_1.snaphost deleted file mode 100644 index 41b5be3500..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 175 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 212 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":[],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_endpointService_1.snaphost new file mode 100644 index 0000000000..0081933feb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Create/POST_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 190 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 209 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::addEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"68824c6942be0f23307f4567","regionName":"NORTH_AMERICA_NORTHEAST_1","serviceAttachmentNames":[],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost deleted file mode 100644 index 77340d2522..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost new file mode 100644 index 0000000000..7efa979a64 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Delete/DELETE_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 135 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::deleteEndpointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost deleted file mode 100644 index 12fd4c2759..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 887 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":["projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-0","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-1","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-2","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-3","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-4","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-5"],"status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost new file mode 100644 index 0000000000..e7adfccc39 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Describe/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1046 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"68824c6942be0f23307f4567","regionName":"NORTH_AMERICA_NORTHEAST_1","serviceAttachmentNames":["projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-0","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-1","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-2","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-3","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-4","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-5"],"status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_1.snaphost deleted file mode 100644 index 1fd5be215e..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 889 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":["projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-0","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-1","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-2","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-3","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-4","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-5"],"status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_1.snaphost new file mode 100644 index 0000000000..945cd437d6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/List/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1048 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndpointServices +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"68824c6942be0f23307f4567","regionName":"NORTH_AMERICA_NORTHEAST_1","serviceAttachmentNames":["projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-0","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-1","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-2","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-3","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-4","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-5"],"status":"AVAILABLE"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/POST_api_atlas_v2_groups_1.snaphost index 320b80565d..0295e8b28a 100644 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1081 +Content-Length: 1080 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:55 GMT +Date: Thu, 24 Jul 2025 15:08:22 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2106 +X-Envoy-Upstream-Service-Time: 1950 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:15:57Z","id":"687f1e8ba799aa2ae9e8100a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e8ba799aa2ae9e8100a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsGPC-e2e-530","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:08:24Z","id":"68824c6642be0f23307f44f4","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c6642be0f23307f44f4/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"privateEndpointsGPC-e2e-29","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost deleted file mode 100644 index 7e5aed081e..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 175 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:15:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":[],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_2.snaphost deleted file mode 100644 index 366e2cf107..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 293 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":["projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-0"],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_3.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_3.snaphost deleted file mode 100644 index 1ae172d610..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 412 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":["projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-0","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-1"],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_4.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_4.snaphost deleted file mode 100644 index 8d50f20ea2..0000000000 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_687f1e8ba799aa2ae9e8100a_privateEndpoint_GCP_endpointService_687f1e8da799aa2ae9e81074_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 887 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 70 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"687f1e8da799aa2ae9e81074","regionName":"CENTRAL_US","serviceAttachmentNames":["projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-0","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-1","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-2","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-3","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-4","projects/p-spcpuysr0rkrqxxn0nryvila/regions/us-central1/serviceAttachments/sa-us-central1-687f1e8ba799aa2ae9e8100a-5"],"status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost new file mode 100644 index 0000000000..324767a114 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 190 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:08:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"68824c6942be0f23307f4567","regionName":"NORTH_AMERICA_NORTHEAST_1","serviceAttachmentNames":[],"status":"INITIATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_2.snaphost b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_2.snaphost new file mode 100644 index 0000000000..09b0bcdad8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/Watch/GET_api_atlas_v2_groups_68824c6642be0f23307f44f4_privateEndpoint_GCP_endpointService_68824c6942be0f23307f4567_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1046 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:37 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getEndPointService +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"GCP","endpointGroupNames":[],"errorMessage":null,"id":"68824c6942be0f23307f4567","regionName":"NORTH_AMERICA_NORTHEAST_1","serviceAttachmentNames":["projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-0","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-1","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-2","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-3","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-4","projects/p-qq5sxbzdwfmcivmezysenzd9/regions/northamerica-northeast1/serviceAttachments/sa-northamerica-northeast1-68824c6642be0f23307f44f4-5"],"status":"AVAILABLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/memory.json b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/memory.json index c0b70a0ae2..a96629b3a8 100644 --- a/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/memory.json +++ b/test/e2e/testdata/.snapshots/TestPrivateEndpointsGCP/memory.json @@ -1 +1 @@ -{"TestPrivateEndpointsGCP/rand":""} \ No newline at end of file +{"TestPrivateEndpointsGCP/rand":"Ag=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_1.snaphost deleted file mode 100644 index a0d2272764..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1814 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:16 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:15Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230fb6","id":"687f1d73a799aa2ae9e80256","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-814","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80224","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80238","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_2.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_2.snaphost deleted file mode 100644 index 4c42bf637b..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1900 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:16 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:15Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230fb6","id":"687f1d73a799aa2ae9e80256","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-814","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80239","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80238","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_3.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_3.snaphost deleted file mode 100644 index 198e1c9a3f..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_processes-814_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2209 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 109 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://processes-814-shard-00-00.dyhcbh.mongodb-dev.net:27017,processes-814-shard-00-01.dyhcbh.mongodb-dev.net:27017,processes-814-shard-00-02.dyhcbh.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-rffb0f-shard-0","standardSrv":"mongodb+srv://processes-814.dyhcbh.mongodb-dev.net"},"createDate":"2025-07-22T05:11:15Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230fb6","id":"687f1d73a799aa2ae9e80256","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-814","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80239","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80238","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_provider_regions_1.snaphost deleted file mode 100644 index 71eef1f9c4..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 118 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_1.snaphost new file mode 100644 index 0000000000..a225971aec --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1814 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:48 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:47Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8c42be0f23307f3451","id":"68824b8f42be0f23307f3528","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-935","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8f42be0f23307f3518","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8f42be0f23307f3520","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_2.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_2.snaphost new file mode 100644 index 0000000000..d76de5975b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1900 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:47Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8c42be0f23307f3451","id":"68824b8f42be0f23307f3528","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-935","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8f42be0f23307f3521","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8f42be0f23307f3520","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_3.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_3.snaphost new file mode 100644 index 0000000000..8f695e8477 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_processes-935_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2209 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://processes-935-shard-00-00.0eiwse.mongodb-dev.net:27017,processes-935-shard-00-01.0eiwse.mongodb-dev.net:27017,processes-935-shard-00-02.0eiwse.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-1k5j24-shard-0","standardSrv":"mongodb+srv://processes-935.0eiwse.mongodb-dev.net"},"createDate":"2025-07-24T15:04:47Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8c42be0f23307f3451","id":"68824b8f42be0f23307f3528","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-935","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8f42be0f23307f3521","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8f42be0f23307f3520","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..ab0f917237 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index b75434a15f..4cb40d90d3 100644 --- a/test/e2e/testdata/.snapshots/TestProcesses/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestProcesses/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:14 GMT +Date: Thu, 24 Jul 2025 15:04:46 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_1.snaphost index 9fce376c50..ca6441c265 100644 --- a/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1071 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:12 GMT +Date: Thu, 24 Jul 2025 15:04:44 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2163 +X-Envoy-Upstream-Service-Time: 1638 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:14Z","id":"687f1d7044f1ab3f84230fb6","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"processes-e2e-991","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:46Z","id":"68824b8c42be0f23307f3451","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"processes-e2e-897","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_1.snaphost deleted file mode 100644 index 4c06f0cf05..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1804 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 668 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:15Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230fb6","id":"687f1d73a799aa2ae9e80256","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/clusters/processes-814/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-814","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d73a799aa2ae9e80224","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d73a799aa2ae9e80238","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_1.snaphost new file mode 100644 index 0000000000..54dfcec8b2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/POST_api_atlas_v2_groups_68824b8c42be0f23307f3451_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1804 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:47 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 691 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:47Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8c42be0f23307f3451","id":"68824b8f42be0f23307f3528","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/clusters/processes-935/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"processes-935","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b8f42be0f23307f3518","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8f42be0f23307f3520","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net_27017_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net_27017_1.snaphost deleted file mode 100644 index 7ac1e5a525..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net_27017_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 908 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 113 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAtlasProcess -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"created":"2025-07-22T05:19:50Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6","rel":"https://cloud.mongodb.com/group"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017/measurements?granularity=PT5M&period=PT24H","rel":"https://cloud.mongodb.com/measurements"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-814-shard-00-00.dyhcbh.mongodb-dev.net","version":"8.0.12"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net_27017_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net_27017_1.snaphost new file mode 100644 index 0000000000..4ff35af21c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/describe/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net_27017_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 908 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 110 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAtlasProcess +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451","rel":"https://cloud.mongodb.com/group"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017/measurements?granularity=PT5M&period=PT24H","rel":"https://cloud.mongodb.com/measurements"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-935-shard-00-00.0eiwse.mongodb-dev.net","version":"8.0.12"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost deleted file mode 100644 index 545b24bd60..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1859 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:29 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 102 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:19:50Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-814-shard-00-00.dyhcbh.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:19:50Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"processes-814-shard-00-01.dyhcbh.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:19:51Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-814-shard-00-02.dyhcbh.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost new file mode 100644 index 0000000000..dbe9095348 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/list/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1859 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 124 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-935-shard-00-00.0eiwse.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"processes-935-shard-00-01.0eiwse.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-935-shard-00-02.0eiwse.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost deleted file mode 100644 index 7d76f01397..0000000000 --- a/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230fb6_processes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1859 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:30 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 86 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-22T05:19:50Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-00.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-814-shard-00-00.dyhcbh.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:19:50Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-01.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"processes-814-shard-00-01.dyhcbh.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-22T05:19:51Z","groupId":"687f1d7044f1ab3f84230fb6","hostname":"atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net","id":"atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net:27017","lastPing":"2025-07-22T05:20:28Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230fb6/processes/atlas-rffb0f-shard-00-02.dyhcbh.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-rffb0f-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-814-shard-00-02.dyhcbh.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost b/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost new file mode 100644 index 0000000000..cbf710a966 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProcesses/list_compact/GET_api_atlas_v2_groups_68824b8c42be0f23307f3451_processes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1859 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasProcessesResource::getAllAtlasProcesses +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-00.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-935-shard-00-00.0eiwse.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-01.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_PRIMARY","userAlias":"processes-935-shard-00-01.0eiwse.mongodb-dev.net","version":"8.0.12"},{"created":"2025-07-24T15:12:54Z","groupId":"68824b8c42be0f23307f3451","hostname":"atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net","id":"atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net:27017","lastPing":"2025-07-24T15:13:24Z","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8c42be0f23307f3451/processes/atlas-1k5j24-shard-00-02.0eiwse.mongodb-dev.net:27017","rel":"self"}],"port":27017,"replicaSetName":"atlas-1k5j24-shard-0","typeName":"REPLICA_SECONDARY","userAlias":"processes-935-shard-00-02.0eiwse.mongodb-dev.net","version":"8.0.12"}],"totalCount":3} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProcesses/memory.json b/test/e2e/testdata/.snapshots/TestProcesses/memory.json index 76036144be..cc55d2762d 100644 --- a/test/e2e/testdata/.snapshots/TestProcesses/memory.json +++ b/test/e2e/testdata/.snapshots/TestProcesses/memory.json @@ -1 +1 @@ -{"TestProcesses/processesGenerateClusterName":"processes-814"} \ No newline at end of file +{"TestProcesses/processesGenerateClusterName":"processes-935"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost deleted file mode 100644 index 95887957e1..0000000000 --- a/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 323 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:45 GMT -Location: http://localhost:8080//api/atlas/v1.0 -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 82 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::getGroupSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"isCollectDatabaseSpecificsStatisticsEnabled":true,"isDataExplorerEnabled":true,"isDataExplorerGenAIFeaturesEnabled":true,"isDataExplorerGenAISampleDocumentPassingEnabled":false,"isExtendedStorageSizesEnabled":false,"isPerformanceAdvisorEnabled":true,"isRealtimePerformancePanelEnabled":true,"isSchemaAdvisorEnabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost new file mode 100644 index 0000000000..35b558bebe --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProjectSettings/Describe/GET_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 323 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:52 GMT +Location: http://localhost:8080//api/atlas/v1.0 +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 110 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::getGroupSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"isCollectDatabaseSpecificsStatisticsEnabled":true,"isDataExplorerEnabled":true,"isDataExplorerGenAIFeaturesEnabled":true,"isDataExplorerGenAISampleDocumentPassingEnabled":false,"isExtendedStorageSizesEnabled":false,"isPerformanceAdvisorEnabled":true,"isRealtimePerformancePanelEnabled":true,"isSchemaAdvisorEnabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost deleted file mode 100644 index bada77babb..0000000000 --- a/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 323 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:45 GMT -Location: http://localhost:8080//api/atlas/v1.0 -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::patchGroupSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"isCollectDatabaseSpecificsStatisticsEnabled":true,"isDataExplorerEnabled":true,"isDataExplorerGenAIFeaturesEnabled":true,"isDataExplorerGenAISampleDocumentPassingEnabled":false,"isExtendedStorageSizesEnabled":false,"isPerformanceAdvisorEnabled":true,"isRealtimePerformancePanelEnabled":true,"isSchemaAdvisorEnabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_2.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_2.snaphost deleted file mode 100644 index fafab2b434..0000000000 --- a/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_687f1e0744f1ab3f84231e0d_settings_2.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 324 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:46 GMT -Location: http://localhost:8080//api/atlas/v1.0 -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::patchGroupSettings -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"isCollectDatabaseSpecificsStatisticsEnabled":false,"isDataExplorerEnabled":true,"isDataExplorerGenAIFeaturesEnabled":true,"isDataExplorerGenAISampleDocumentPassingEnabled":false,"isExtendedStorageSizesEnabled":false,"isPerformanceAdvisorEnabled":true,"isRealtimePerformancePanelEnabled":true,"isSchemaAdvisorEnabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost new file mode 100644 index 0000000000..3c0a5400bf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestProjectSettings/PATCH_api_atlas_v2_groups_68824c0942be0f23307f4260_settings_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 324 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:53 GMT +Location: http://localhost:8080//api/atlas/v1.0 +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::patchGroupSettings +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"isCollectDatabaseSpecificsStatisticsEnabled":false,"isDataExplorerEnabled":true,"isDataExplorerGenAIFeaturesEnabled":true,"isDataExplorerGenAISampleDocumentPassingEnabled":false,"isExtendedStorageSizesEnabled":false,"isPerformanceAdvisorEnabled":true,"isRealtimePerformancePanelEnabled":true,"isSchemaAdvisorEnabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestProjectSettings/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestProjectSettings/POST_api_atlas_v2_groups_1.snaphost index ca74954272..c89d6b9879 100644 --- a/test/e2e/testdata/.snapshots/TestProjectSettings/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestProjectSettings/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1070 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:13:43 GMT +Date: Thu, 24 Jul 2025 15:06:49 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1510 +X-Envoy-Upstream-Service-Time: 2904 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:13:45Z","id":"687f1e0744f1ab3f84231e0d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1e0744f1ab3f84231e0d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"settings-e2e-270","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:06:52Z","id":"68824c0942be0f23307f4260","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824c0942be0f23307f4260/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"settings-e2e-655","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost deleted file mode 100644 index 91dc64264e..0000000000 --- a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 94 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::updateRegionalizedPrivateLinkEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost new file mode 100644 index 0000000000..4eca6f5f90 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Disable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 99 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::updateRegionalizedPrivateLinkEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost deleted file mode 100644 index f83a645317..0000000000 --- a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 16 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::updateRegionalizedPrivateLinkEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost new file mode 100644 index 0000000000..0290408cff --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Enable_regionalized_private_endpoint_setting/PATCH_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 16 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 94 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::updateRegionalizedPrivateLinkEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost deleted file mode 100644 index 275d49c347..0000000000 --- a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_687f1fb844f1ab3f84232536_privateEndpoint_regionalMode_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 17 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasPrivateEndpointResource::getRegionalizedPrivateLinkEnabled -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost new file mode 100644 index 0000000000..d36cb2abed --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/Get_regionalized_private_endpoint_setting/GET_api_atlas_v2_groups_68824dde42be0f23307f4c70_privateEndpoint_regionalMode_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 17 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 71 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasPrivateEndpointResource::getRegionalizedPrivateLinkEnabled +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"enabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/POST_api_atlas_v2_groups_1.snaphost index eddb7cc892..5045aae119 100644 --- a/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestRegionalizedPrivateEndpointsSettings/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1097 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:56 GMT +Date: Thu, 24 Jul 2025 15:14:38 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1180 +X-Envoy-Upstream-Service-Time: 1397 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:20:57Z","id":"687f1fb844f1ab3f84232536","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1fb844f1ab3f84232536/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"regionalizedPrivateEndpointsSettings-e2e-94","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:14:39Z","id":"68824dde42be0f23307f4c70","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824dde42be0f23307f4c70/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"regionalizedPrivateEndpointsSettings-e2e-61","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_1.snaphost deleted file mode 100644 index a26a493f64..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 601 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:26:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 180 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_1.snaphost new file mode 100644 index 0000000000..492affef6b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Create_snapshot/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 598 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 196 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:22:25Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_1.snaphost deleted file mode 100644 index 4f2dda3dd1..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:39:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 389 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::deleteGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost deleted file mode 100644 index 65f19673b7..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:36:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 315 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_1.snaphost deleted file mode 100644 index 1d7aee4b6a..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:42:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 393 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasGroupsResource::deleteGroup -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost deleted file mode 100644 index 41edbe8135..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:39:27 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 297 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_1.snaphost new file mode 100644 index 0000000000..94150af23e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:35:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 492 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::deleteGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost new file mode 100644 index 0000000000..a310bd3bef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:32:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 366 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_1.snaphost new file mode 100644 index 0000000000..a7d2bbb010 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:37:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 487 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasGroupsResource::deleteGroup +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost new file mode 100644 index 0000000000..17086de563 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/DELETE_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:35:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 498 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost deleted file mode 100644 index 3ba27e3de3..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:36:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 151 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost new file mode 100644 index 0000000000..e6c31f6195 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Delete_snapshot/DELETE_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:32:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost deleted file mode 100644 index 3fdbc8dedc..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1832 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:52Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d9744f1ab3f842317ab","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_2.snaphost deleted file mode 100644 index 72564db642..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1918 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:52Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9844f1ab3f842317b5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_3.snaphost deleted file mode 100644 index 8e7832d1dc..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2247 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:28 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-295-shard-00-00.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-01.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-02.za7xzj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-j46o4i-shard-0","standardSrv":"mongodb+srv://backuprestores-295.za7xzj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:52Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9844f1ab3f842317b5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_4.snaphost deleted file mode 100644 index a3d1c12032..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2252 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:36:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 129 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-295-shard-00-00.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-01.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-02.za7xzj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-j46o4i-shard-0","standardSrv":"mongodb+srv://backuprestores-295.za7xzj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:52Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9844f1ab3f842317b5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_5.snaphost deleted file mode 100644 index e26049887a..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 218 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:39:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 83 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named backupRestores-295 exists in group 687f1d94a799aa2ae9e80858.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["backupRestores-295","687f1d94a799aa2ae9e80858"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_provider_regions_1.snaphost deleted file mode 100644 index e849573a55..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost deleted file mode 100644 index bbe8d5c5bc..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1836 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:33 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:19:32Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f61a799aa2ae9e812e1","id":"687f1f6444f1ab3f842322d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-712","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1f6444f1ab3f842322c6","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f6444f1ab3f842322ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_2.snaphost deleted file mode 100644 index e02174d19a..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1922 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:33 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:19:32Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f61a799aa2ae9e812e1","id":"687f1f6444f1ab3f842322d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-712","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f6444f1ab3f842322cf","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f6444f1ab3f842322ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_3.snaphost deleted file mode 100644 index 971d9e9ea0..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2255 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:26:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores2-712-shard-00-00.yuimzw.mongodb-dev.net:27017,backuprestores2-712-shard-00-01.yuimzw.mongodb-dev.net:27017,backuprestores2-712-shard-00-02.yuimzw.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ffzxgd-shard-0","standardSrv":"mongodb+srv://backuprestores2-712.yuimzw.mongodb-dev.net"},"createDate":"2025-07-22T05:19:32Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f61a799aa2ae9e812e1","id":"687f1f6444f1ab3f842322d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-712","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f6444f1ab3f842322cf","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f6444f1ab3f842322ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_4.snaphost deleted file mode 100644 index a86636040d..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2260 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:39:28 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 116 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores2-712-shard-00-00.yuimzw.mongodb-dev.net:27017,backuprestores2-712-shard-00-01.yuimzw.mongodb-dev.net:27017,backuprestores2-712-shard-00-02.yuimzw.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ffzxgd-shard-0","standardSrv":"mongodb+srv://backuprestores2-712.yuimzw.mongodb-dev.net"},"createDate":"2025-07-22T05:19:32Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f61a799aa2ae9e812e1","id":"687f1f6444f1ab3f842322d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-712","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f6444f1ab3f842322cf","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f6444f1ab3f842322ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_5.snaphost deleted file mode 100644 index 7fcdb35d42..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_backupRestores2-712_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 220 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:42:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 94 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named backupRestores2-712 exists in group 687f1f61a799aa2ae9e812e1.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["backupRestores2-712","687f1f61a799aa2ae9e812e1"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_provider_regions_1.snaphost deleted file mode 100644 index a8c050db0c..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:31 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost new file mode 100644 index 0000000000..2ab9fc3392 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1828 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824bb1b44898105334600b","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_2.snaphost new file mode 100644 index 0000000000..9553ef0981 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1914 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 125 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb1b448981053346014","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_3.snaphost new file mode 100644 index 0000000000..5c77b1cec3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2239 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 119 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-54-shard-00-00.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-01.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-02.qi9y8p.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-cke7mt-shard-0","standardSrv":"mongodb+srv://backuprestores-54.qi9y8p.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb1b448981053346014","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_4.snaphost new file mode 100644 index 0000000000..7a7501361f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2244 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:32:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-54-shard-00-00.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-01.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-02.qi9y8p.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-cke7mt-shard-0","standardSrv":"mongodb+srv://backuprestores-54.qi9y8p.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb1b448981053346014","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_5.snaphost new file mode 100644 index 0000000000..d986c48d62 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 216 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:35:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named backupRestores-54 exists in group 68824bafb448981053345f6d.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["backupRestores-54","68824bafb448981053345f6d"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..5f75c613ef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost new file mode 100644 index 0000000000..8a806fa050 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1832 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:36 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 109 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:35Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824d9d42be0f23307f4b11","id":"68824d9fb448981053346f92","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-78","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824d9fb448981053346f82","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d9fb448981053346f8a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_2.snaphost new file mode 100644 index 0000000000..7e499117f9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1918 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:36 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 111 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:35Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824d9d42be0f23307f4b11","id":"68824d9fb448981053346f92","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-78","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824d9fb448981053346f8b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d9fb448981053346f8a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_3.snaphost new file mode 100644 index 0000000000..ae08bc0443 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2247 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 121 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores2-78-shard-00-00.zdvb70.mongodb-dev.net:27017,backuprestores2-78-shard-00-01.zdvb70.mongodb-dev.net:27017,backuprestores2-78-shard-00-02.zdvb70.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-2xbhke-shard-0","standardSrv":"mongodb+srv://backuprestores2-78.zdvb70.mongodb-dev.net"},"createDate":"2025-07-24T15:13:35Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824d9d42be0f23307f4b11","id":"68824d9fb448981053346f92","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-78","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824d9fb448981053346f8b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d9fb448981053346f8a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_4.snaphost new file mode 100644 index 0000000000..6ab5bb64a9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2252 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:35:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 130 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores2-78-shard-00-00.zdvb70.mongodb-dev.net:27017,backuprestores2-78-shard-00-01.zdvb70.mongodb-dev.net:27017,backuprestores2-78-shard-00-02.zdvb70.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-2xbhke-shard-0","standardSrv":"mongodb+srv://backuprestores2-78.zdvb70.mongodb-dev.net"},"createDate":"2025-07-24T15:13:35Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824d9d42be0f23307f4b11","id":"68824d9fb448981053346f92","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-78","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824d9fb448981053346f8b","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d9fb448981053346f8a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_5.snaphost new file mode 100644 index 0000000000..1ea1609c7a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_backupRestores2-78_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 218 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:37:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named backupRestores2-78 exists in group 68824d9d42be0f23307f4b11.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["backupRestores2-78","68824d9d42be0f23307f4b11"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..ffc72537ca --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 110 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 5dc9b18d58..aa64f599ed 100644 --- a/test/e2e/testdata/.snapshots/TestRestores/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestRestores/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:50 GMT +Date: Thu, 24 Jul 2025 15:05:20 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_1.snaphost index 7b76b64791..71d0599952 100644 --- a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1075 +Content-Length: 1076 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:48 GMT +Date: Thu, 24 Jul 2025 15:05:19 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1838 +X-Envoy-Upstream-Service-Time: 1634 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:50Z","id":"687f1d94a799aa2ae9e80858","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupRestores-e2e-62","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:20Z","id":"68824bafb448981053345f6d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupRestores-e2e-774","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_2.snaphost index a6799cfbc4..8dc63e6a72 100644 --- a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_2.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1077 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:29 GMT +Date: Thu, 24 Jul 2025 15:13:33 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2048 +X-Envoy-Upstream-Service-Time: 1582 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:19:31Z","id":"687f1f61a799aa2ae9e812e1","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupRestores2-e2e-156","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:13:34Z","id":"68824d9d42be0f23307f4b11","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupRestores2-e2e-181","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_1.snaphost deleted file mode 100644 index dbed96d9ef..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1822 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 683 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:52Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d9744f1ab3f842317ab","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_1.snaphost deleted file mode 100644 index 7169831644..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_687f1f61a799aa2ae9e812e1_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1826 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:32 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 654 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:19:32Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f61a799aa2ae9e812e1","id":"687f1f6444f1ab3f842322d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f61a799aa2ae9e812e1/clusters/backupRestores2-712/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-712","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1f6444f1ab3f842322c6","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f6444f1ab3f842322ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_1.snaphost new file mode 100644 index 0000000000..9b33470aa4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1818 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 552 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:21Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824bb1b44898105334600b","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_1.snaphost new file mode 100644 index 0000000000..d19e6d0129 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/POST_api_atlas_v2_groups_68824d9d42be0f23307f4b11_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1822 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:35 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 625 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:13:35Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824d9d42be0f23307f4b11","id":"68824d9fb448981053346f92","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824d9d42be0f23307f4b11/clusters/backupRestores2-78/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores2-78","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824d9fb448981053346f82","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824d9fb448981053346f8a","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost deleted file mode 100644 index 0edc8e0a79..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2247 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 114 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-295-shard-00-00.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-01.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-02.za7xzj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-j46o4i-shard-0","standardSrv":"mongodb+srv://backuprestores-295.za7xzj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:52Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9844f1ab3f842317b5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost new file mode 100644 index 0000000000..b844f74b9f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2239 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-54-shard-00-00.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-01.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-02.qi9y8p.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-cke7mt-shard-0","standardSrv":"mongodb+srv://backuprestores-54.qi9y8p.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb1b448981053346014","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost deleted file mode 100644 index 3aa773b7b7..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1020 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 339 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::createRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"687f21d044f1ab3f84232980","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f21d044f1ab3f84232980","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","targetClusterName":"backupRestores2-712","targetDeploymentItemName":"atlas-ffzxgd","targetGroupId":"687f1f61a799aa2ae9e812e1","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost new file mode 100644 index 0000000000..43ecca691f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Automated/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1016 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 283 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::createRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"6882506f42be0f23307f55a3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882506f42be0f23307f55a3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","targetClusterName":"backupRestores2-78","targetDeploymentItemName":"atlas-2xbhke","targetGroupId":"68824d9d42be0f23307f4b11","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost deleted file mode 100644 index c99ff685b1..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2247 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-295-shard-00-00.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-01.za7xzj.mongodb-dev.net:27017,backuprestores-295-shard-00-02.za7xzj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-j46o4i-shard-0","standardSrv":"mongodb+srv://backuprestores-295.za7xzj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:52Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d94a799aa2ae9e80858","id":"687f1d9844f1ab3f842317c0","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-295","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d9844f1ab3f842317b5","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9844f1ab3f842317b4","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost new file mode 100644 index 0000000000..ddddf464a4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2239 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backuprestores-54-shard-00-00.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-01.qi9y8p.mongodb-dev.net:27017,backuprestores-54-shard-00-02.qi9y8p.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-cke7mt-shard-0","standardSrv":"mongodb+srv://backuprestores-54.qi9y8p.mongodb-dev.net"},"createDate":"2025-07-24T15:05:21Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bafb448981053345f6d","id":"68824bb1b44898105334602b","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupRestores-54","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bb1b448981053346014","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bb1b448981053346013","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost deleted file mode 100644 index cbe81c256c..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 892 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 195 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::createRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"download","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"687f22b4a799aa2ae9e81b97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f22b4a799aa2ae9e81b97","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost new file mode 100644 index 0000000000..e77d612dc0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Create_-_Download/POST_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 889 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 169 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::createRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"download","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"6882516542be0f23307f58a7","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882516542be0f23307f58a7","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost deleted file mode 100644 index a352b331fb..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1056 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:39 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 74 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-22T05:33:33Z","id":"687f21d044f1ab3f84232980","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f21d044f1ab3f84232980","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","targetClusterName":"backupRestores2-712","targetDeploymentItemName":"atlas-ffzxgd","targetGroupId":"687f1f61a799aa2ae9e812e1","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost deleted file mode 100644 index f4230b3d20..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 201 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:33:38 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 82 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster backupRestores-295 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-295"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost new file mode 100644 index 0000000000..25490d96f6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1052 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 68 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-24T15:29:35Z","id":"6882506f42be0f23307f55a3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882506f42be0f23307f55a3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","targetClusterName":"backupRestores2-78","targetDeploymentItemName":"atlas-2xbhke","targetGroupId":"68824d9d42be0f23307f4b11","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost new file mode 100644 index 0000000000..b14949df51 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Describe/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 199 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:29:40 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster backupRestores-54 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-54"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost deleted file mode 100644 index dccbf51616..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1278 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:38 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJobs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-22T05:33:33Z","id":"687f21d044f1ab3f84232980","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f21d044f1ab3f84232980","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","targetClusterName":"backupRestores2-712","targetDeploymentItemName":"atlas-ffzxgd","targetGroupId":"687f1f61a799aa2ae9e812e1","timestamp":"2025-07-22T05:28:39Z"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_1.snaphost deleted file mode 100644 index d60bd3969a..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 201 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:33:38 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJobs -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster backupRestores-295 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-295"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost new file mode 100644 index 0000000000..5a9013e3d8 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1273 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJobs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-24T15:29:35Z","id":"6882506f42be0f23307f55a3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882506f42be0f23307f55a3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","targetClusterName":"backupRestores2-78","targetDeploymentItemName":"atlas-2xbhke","targetGroupId":"68824d9d42be0f23307f4b11","timestamp":"2025-07-24T15:24:11Z"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_1.snaphost new file mode 100644 index 0000000000..9cf6f48870 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_List/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 199 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:29:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJobs +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster backupRestores-54 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-54"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost deleted file mode 100644 index 1b701d62d8..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1020 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"687f21d044f1ab3f84232980","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f21d044f1ab3f84232980","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","targetClusterName":"backupRestores2-712","targetDeploymentItemName":"atlas-ffzxgd","targetGroupId":"687f1f61a799aa2ae9e812e1","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_2.snaphost deleted file mode 100644 index 8812bda4c7..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1056 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:37 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-22T05:33:33Z","id":"687f21d044f1ab3f84232980","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f21d044f1ab3f84232980","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","targetClusterName":"backupRestores2-712","targetDeploymentItemName":"atlas-ffzxgd","targetGroupId":"687f1f61a799aa2ae9e812e1","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost deleted file mode 100644 index dc275feeaf..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f21d044f1ab3f84232980_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 201 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:29:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster backupRestores-295 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-295"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost new file mode 100644 index 0000000000..4f5d946370 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1016 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"6882506f42be0f23307f55a3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882506f42be0f23307f55a3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","targetClusterName":"backupRestores2-78","targetDeploymentItemName":"atlas-2xbhke","targetGroupId":"68824d9d42be0f23307f4b11","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_2.snaphost new file mode 100644 index 0000000000..d508957308 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1052 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:39 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 79 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"automated","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"finishedAt":"2025-07-24T15:29:35Z","id":"6882506f42be0f23307f55a3","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882506f42be0f23307f55a3","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","targetClusterName":"backupRestores2-78","targetDeploymentItemName":"atlas-2xbhke","targetGroupId":"68824d9d42be0f23307f4b11","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost new file mode 100644 index 0000000000..f811c07765 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882506f42be0f23307f55a3_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 199 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:25:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster backupRestores-54 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-54"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost deleted file mode 100644 index e923faf229..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 892 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:33:40 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 63 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"download","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"687f22b4a799aa2ae9e81b97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f22b4a799aa2ae9e81b97","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_2.snaphost deleted file mode 100644 index d52033343c..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1063 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:36:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 72 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cancelled":false,"deliveryType":"download","deliveryUrl":["https://restore-687f22b4a799aa2ae9e81b97.za7xzj.mongodb-dev.net:27017/UoFin9CXaEQ3aB8yyuz3uPx5/restore-687f211ca799aa2ae9e818e2.tar.gz"],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"expiresAt":"2025-07-22T06:36:32Z","failed":false,"id":"687f22b4a799aa2ae9e81b97","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/restoreJobs/687f22b4a799aa2ae9e81b97","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"687f211ca799aa2ae9e818e2","timestamp":"2025-07-22T05:28:39Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost deleted file mode 100644 index d37b592f78..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_restoreJobs_687f22b4a799aa2ae9e81b97_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 201 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:33:40 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 75 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster backupRestores-295 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-295"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost new file mode 100644 index 0000000000..220ffe1e48 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 889 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:29:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 82 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"download","deliveryUrl":[],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"failed":false,"id":"6882516542be0f23307f58a7","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882516542be0f23307f58a7","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_2.snaphost new file mode 100644 index 0000000000..8ff7685d83 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1060 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:32:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupRestoreJobsResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=e4f9c429a4b70ce41be5c5738b5cf7bd71d9e24c; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cancelled":false,"deliveryType":"download","deliveryUrl":["https://restore-6882516542be0f23307f58a7.qi9y8p.mongodb-dev.net:27017/28GlvrrpOl7Kjr8FOzGihzqa/restore-68824fb142be0f23307f541b.tar.gz"],"desiredTimestamp":{"increment":null,"time":null,"date":null},"expired":false,"expiresAt":"2025-07-24T16:32:45Z","failed":false,"id":"6882516542be0f23307f58a7","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/restoreJobs/6882516542be0f23307f58a7","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"https://cloud.mongodb.com/snapshot"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d","rel":"https://cloud.mongodb.com/group"}],"snapshotId":"68824fb142be0f23307f541b","timestamp":"2025-07-24T15:24:11Z"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost new file mode 100644 index 0000000000..4ffbf73c2f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Restores_Watch_-_Download/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_restoreJobs_6882516542be0f23307f58a7_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 199 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:29:41 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getRestoreJob +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster backupRestores-54 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-54"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost deleted file mode 100644 index 29e7e4b371..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 601 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:26:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 68 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_2.snaphost deleted file mode 100644 index 6ab5205007..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 605 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 90 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_3.snaphost deleted file mode 100644 index 4ddfbc3441..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 630 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:23 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_4.snaphost deleted file mode 100644 index f00f24c9cd..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 652 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 129 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_5.snaphost deleted file mode 100644 index a86d13ebb1..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 696 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:28:39Z","description":"test-snapshot","expiresAt":"2025-07-23T05:26:52Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":4142600192,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_6.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_6.snaphost deleted file mode 100644 index 3b43314c00..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_clusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_6.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 695 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:28:39Z","description":"test-snapshot","expiresAt":"2025-07-23T05:29:47Z","frequencyType":"ondemand","id":"687f211ca799aa2ae9e818e2","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295/backup/snapshots/687f211ca799aa2ae9e818e2","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d94a799aa2ae9e80858/clusters/backupRestores-295","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-295","snapshotType":"onDemand","status":"completed","storageSizeBytes":4142600192,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost deleted file mode 100644 index d791e14c48..0000000000 --- a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_687f1d94a799aa2ae9e80858_flexClusters_backupRestores-295_backup_snapshots_687f211ca799aa2ae9e818e2_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 201 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:26:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 84 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster backupRestores-295 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-295"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost new file mode 100644 index 0000000000..4aa7099e3f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 598 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 122 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:22:25Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_2.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_2.snaphost new file mode 100644 index 0000000000..f1febf97c2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 602 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:22:25Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_3.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_3.snaphost new file mode 100644 index 0000000000..fff7bb319b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 627 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 67 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:22:25Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_4.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_4.snaphost new file mode 100644 index 0000000000..1c8d09130a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 649 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:24:13 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 82 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:22:25Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_5.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_5.snaphost new file mode 100644 index 0000000000..eada488568 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_clusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 692 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-24T15:24:11Z","description":"test-snapshot","expiresAt":"2025-07-25T15:25:32Z","frequencyType":"ondemand","id":"68824fb142be0f23307f541b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54/backup/snapshots/68824fb142be0f23307f541b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bafb448981053345f6d/clusters/backupRestores-54","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"backupRestores-54","snapshotType":"onDemand","status":"completed","storageSizeBytes":4152832000,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost new file mode 100644 index 0000000000..bcf2ac541f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestRestores/Watch_snapshot_creation/GET_api_atlas_v2_groups_68824bafb448981053345f6d_flexClusters_backupRestores-54_backup_snapshots_68824fb142be0f23307f541b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 199 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:22:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 96 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster backupRestores-54 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["backupRestores-54"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestRestores/memory.json b/test/e2e/testdata/.snapshots/TestRestores/memory.json index fa3e054cb3..4f719226f9 100644 --- a/test/e2e/testdata/.snapshots/TestRestores/memory.json +++ b/test/e2e/testdata/.snapshots/TestRestores/memory.json @@ -1 +1 @@ -{"TestRestores/backupRestores2GenerateClusterName":"backupRestores2-712","TestRestores/backupRestoresGenerateClusterName":"backupRestores-295"} \ No newline at end of file +{"TestRestores/backupRestores2GenerateClusterName":"backupRestores2-78","TestRestores/backupRestoresGenerateClusterName":"backupRestores-54"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost deleted file mode 100644 index 92cd18c71a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 560 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupScheduleResource::deleteSnapshotSchedule -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoExportEnabled":false,"clusterId":"687f1d72a799aa2ae9e80211","clusterName":"backupSchedule-42","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/687f1d7044f1ab3f84230f92","rel":"https://cloud.mongodb.com/group"}],"policies":[{"id":"687f1f92edd01228b9d0bf9e","policyItems":[]}],"referenceHourOfDay":5,"referenceMinuteOfHour":20,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost new file mode 100644 index 0000000000..6f68d30b7a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/Delete/DELETE_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 563 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 160 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupScheduleResource::deleteSnapshotSchedule +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoExportEnabled":false,"clusterId":"68824b8cb448981053345ab2","clusterName":"backupSchedule-839","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/68824b89b44898105334593e","rel":"https://cloud.mongodb.com/group"}],"policies":[{"id":"68824d8d9e3aa5554713c026","policyItems":[]}],"referenceHourOfDay":15,"referenceMinuteOfHour":13,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost deleted file mode 100644 index a1878592f1..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1220 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:02 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sat, 30 May 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupScheduleResource::getSnapshotSchedule -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoExportEnabled":false,"clusterId":"687f1d72a799aa2ae9e80211","clusterName":"backupSchedule-42","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/687f1d7044f1ab3f84230f92","rel":"https://cloud.mongodb.com/group"}],"nextSnapshot":"2025-07-22T11:20:19Z","policies":[{"id":"687f1f92edd01228b9d0bf9e","policyItems":[{"frequencyInterval":6,"frequencyType":"hourly","id":"687f1f92edd01228b9d0bf9f","retentionUnit":"days","retentionValue":7},{"frequencyInterval":1,"frequencyType":"daily","id":"687f1f92edd01228b9d0bfa0","retentionUnit":"days","retentionValue":7},{"frequencyInterval":6,"frequencyType":"weekly","id":"687f1f92edd01228b9d0bfa1","retentionUnit":"weeks","retentionValue":4},{"frequencyInterval":40,"frequencyType":"monthly","id":"687f1f92edd01228b9d0bfa2","retentionUnit":"months","retentionValue":12},{"frequencyInterval":12,"frequencyType":"yearly","id":"687f1f92edd01228b9d0bfa3","retentionUnit":"years","retentionValue":1}]}],"referenceHourOfDay":5,"referenceMinuteOfHour":20,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost new file mode 100644 index 0000000000..742914220d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/Describe/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1223 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:59 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sat, 30 May 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 122 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupScheduleResource::getSnapshotSchedule +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoExportEnabled":false,"clusterId":"68824b8cb448981053345ab2","clusterName":"backupSchedule-839","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/68824b89b44898105334593e","rel":"https://cloud.mongodb.com/group"}],"nextSnapshot":"2025-07-24T21:13:18Z","policies":[{"id":"68824d8d9e3aa5554713c026","policyItems":[{"frequencyInterval":6,"frequencyType":"hourly","id":"68824d8d9e3aa5554713c027","retentionUnit":"days","retentionValue":7},{"frequencyInterval":1,"frequencyType":"daily","id":"68824d8d9e3aa5554713c028","retentionUnit":"days","retentionValue":7},{"frequencyInterval":6,"frequencyType":"weekly","id":"68824d8d9e3aa5554713c029","retentionUnit":"weeks","retentionValue":4},{"frequencyInterval":40,"frequencyType":"monthly","id":"68824d8d9e3aa5554713c02a","retentionUnit":"months","retentionValue":12},{"frequencyInterval":12,"frequencyType":"yearly","id":"68824d8d9e3aa5554713c02b","retentionUnit":"years","retentionValue":1}]}],"referenceHourOfDay":15,"referenceMinuteOfHour":13,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_1.snaphost deleted file mode 100644 index ccdfc61fdb..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1828 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 167 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230f92","id":"687f1d72a799aa2ae9e80211","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-42","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801c5","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801e6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_2.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_2.snaphost deleted file mode 100644 index 814c0b7aaf..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1914 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 142 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230f92","id":"687f1d72a799aa2ae9e80211","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-42","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801e7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801e6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_3.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_3.snaphost deleted file mode 100644 index a6e1c62272..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2239 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:01 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 94 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backupschedule-42-shard-00-00.asdzyb.mongodb-dev.net:27017,backupschedule-42-shard-00-01.asdzyb.mongodb-dev.net:27017,backupschedule-42-shard-00-02.asdzyb.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-10ai23-shard-0","standardSrv":"mongodb+srv://backupschedule-42.asdzyb.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230f92","id":"687f1d72a799aa2ae9e80211","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-42","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801e7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801e6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_provider_regions_1.snaphost deleted file mode 100644 index f5c4e390c4..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 137 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_1.snaphost new file mode 100644 index 0000000000..19f3f1ceb1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1832 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:45 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:44Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b89b44898105334593e","id":"68824b8cb448981053345ab2","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-839","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824b8cb448981053345aa1","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8cb448981053345aa9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_2.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_2.snaphost new file mode 100644 index 0000000000..39a5778db4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1918 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:45 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:44Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b89b44898105334593e","id":"68824b8cb448981053345ab2","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-839","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8cb448981053345aaa","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8cb448981053345aa9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_3.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_3.snaphost new file mode 100644 index 0000000000..1616e03cb3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2247 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://backupschedule-839-shard-00-00.vskwqr.mongodb-dev.net:27017,backupschedule-839-shard-00-01.vskwqr.mongodb-dev.net:27017,backupschedule-839-shard-00-02.vskwqr.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-nl86ps-shard-0","standardSrv":"mongodb+srv://backupschedule-839.vskwqr.mongodb-dev.net"},"createDate":"2025-07-24T15:04:44Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b89b44898105334593e","id":"68824b8cb448981053345ab2","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-839","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b8cb448981053345aaa","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8cb448981053345aa9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..d9a2480a41 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_atlas_v2_groups_68824b89b44898105334593e_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 142 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 0a6d7a2eb5..c6a54f2b4a 100644 --- a/test/e2e/testdata/.snapshots/TestSchedule/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSchedule/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:13 GMT +Date: Thu, 24 Jul 2025 15:04:44 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_1.snaphost index 319e22b66e..5996d17577 100644 --- a/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1076 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:12 GMT +Date: Thu, 24 Jul 2025 15:04:41 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1260 +X-Envoy-Upstream-Service-Time: 2678 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:13Z","id":"687f1d7044f1ab3f84230f92","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupSchedule-e2e-517","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:43Z","id":"68824b89b44898105334593e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"backupSchedule-e2e-487","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_1.snaphost deleted file mode 100644 index a6b7c029d0..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1818 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 639 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7044f1ab3f84230f92","id":"687f1d72a799aa2ae9e80211","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-42","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801c5","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801e6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_68824b89b44898105334593e_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_68824b89b44898105334593e_clusters_1.snaphost new file mode 100644 index 0000000000..9944e18841 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/POST_api_atlas_v2_groups_68824b89b44898105334593e_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1822 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:44 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 618 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:44Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b89b44898105334593e","id":"68824b8cb448981053345ab2","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"backupSchedule-839","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824b8cb448981053345aa1","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b8cb448981053345aa9","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost deleted file mode 100644 index a2dcebfa85..0000000000 --- a/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_687f1d7044f1ab3f84230f92_clusters_backupSchedule-42_backup_schedule_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1219 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:21:02 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sat, 30 May 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 193 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupScheduleResource::patchSnapshotSchedule -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"autoExportEnabled":false,"clusterId":"687f1d72a799aa2ae9e80211","clusterName":"backupSchedule-42","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7044f1ab3f84230f92/clusters/backupSchedule-42/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/687f1d7044f1ab3f84230f92","rel":"https://cloud.mongodb.com/group"}],"nextSnapshot":"2025-07-22T11:20:19Z","policies":[{"id":"687f1f92edd01228b9d0bf9e","policyItems":[{"frequencyInterval":6,"frequencyType":"hourly","id":"687f1f92edd01228b9d0bf9f","retentionUnit":"days","retentionValue":7},{"frequencyInterval":1,"frequencyType":"daily","id":"687f1f92edd01228b9d0bfa0","retentionUnit":"days","retentionValue":7},{"frequencyInterval":6,"frequencyType":"weekly","id":"687f1f92edd01228b9d0bfa1","retentionUnit":"weeks","retentionValue":4},{"frequencyInterval":40,"frequencyType":"monthly","id":"687f1f92edd01228b9d0bfa2","retentionUnit":"months","retentionValue":12},{"frequencyInterval":12,"frequencyType":"yearly","id":"687f1f92edd01228b9d0bfa3","retentionUnit":"years","retentionValue":1}]}],"referenceHourOfDay":5,"referenceMinuteOfHour":20,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost b/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost new file mode 100644 index 0000000000..0fd878632d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSchedule/Update/PATCH_api_atlas_v2_groups_68824b89b44898105334593e_clusters_backupSchedule-839_backup_schedule_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1222 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:13:59 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sat, 30 May 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 261 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupScheduleResource::patchSnapshotSchedule +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"autoExportEnabled":false,"clusterId":"68824b8cb448981053345ab2","clusterName":"backupSchedule-839","copySettings":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b89b44898105334593e/clusters/backupSchedule-839/backup/schedule","rel":"self"},{"href":"http://localhost:8080/api/public/v1.0/groups/68824b89b44898105334593e","rel":"https://cloud.mongodb.com/group"}],"nextSnapshot":"2025-07-24T21:13:18Z","policies":[{"id":"68824d8d9e3aa5554713c026","policyItems":[{"frequencyInterval":6,"frequencyType":"hourly","id":"68824d8d9e3aa5554713c027","retentionUnit":"days","retentionValue":7},{"frequencyInterval":1,"frequencyType":"daily","id":"68824d8d9e3aa5554713c028","retentionUnit":"days","retentionValue":7},{"frequencyInterval":6,"frequencyType":"weekly","id":"68824d8d9e3aa5554713c029","retentionUnit":"weeks","retentionValue":4},{"frequencyInterval":40,"frequencyType":"monthly","id":"68824d8d9e3aa5554713c02a","retentionUnit":"months","retentionValue":12},{"frequencyInterval":12,"frequencyType":"yearly","id":"68824d8d9e3aa5554713c02b","retentionUnit":"years","retentionValue":1}]}],"referenceHourOfDay":15,"referenceMinuteOfHour":13,"restoreWindowDays":7,"useOrgAndGroupNamesInExportPrefix":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSchedule/memory.json b/test/e2e/testdata/.snapshots/TestSchedule/memory.json index 08854524b1..f4fd2eb916 100644 --- a/test/e2e/testdata/.snapshots/TestSchedule/memory.json +++ b/test/e2e/testdata/.snapshots/TestSchedule/memory.json @@ -1 +1 @@ -{"TestSchedule/backupScheduleGenerateClusterName":"backupSchedule-42"} \ No newline at end of file +{"TestSchedule/backupScheduleGenerateClusterName":"backupSchedule-839"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost deleted file mode 100644 index 58b2e61b55..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 372 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 3166 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"posts","database":"sample_training","indexID":"687f1f8344f1ab3f84232317","latestDefinition":{"mappings":{"dynamic":false,"fields":{"comments":[{"dynamic":true,"type":"document"},{"type":"string"}]}},"searchAnalyzer":"lucene.standard"},"latestDefinitionVersion":{"version":0},"name":"index-array-581","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost new file mode 100644 index 0000000000..abda1e31c2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Create_array_mapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 372 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 2376 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"posts","database":"sample_training","indexID":"68824e6db448981053347291","latestDefinition":{"mappings":{"dynamic":false,"fields":{"comments":[{"dynamic":true,"type":"document"},{"type":"string"}]}},"searchAnalyzer":"lucene.standard"},"latestDefinitionVersion":{"version":0},"name":"index-array-580","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost deleted file mode 100644 index 2be610107e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 612 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1068 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"planets","database":"sample_guides","indexID":"687f1f80a799aa2ae9e813b8","latestDefinition":{"analyzer":"lucene.standard","mappings":{"dynamic":false,"fields":{"mainAtmosphere":{"analyzer":"lucene.standard","type":"string"},"name":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"lucene.french","type":"string"}},"type":"string"},"surfaceTemperatureC":{"analyzer":"lucene.standard","dynamic":true,"type":"document"}}},"searchAnalyzer":"lucene.standard"},"latestDefinitionVersion":{"version":0},"name":"index-734","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost new file mode 100644 index 0000000000..d7eb5c3671 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Create_combinedMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 612 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1732 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"planets","database":"sample_guides","indexID":"68824e6a42be0f23307f4f97","latestDefinition":{"analyzer":"lucene.standard","mappings":{"dynamic":false,"fields":{"mainAtmosphere":{"analyzer":"lucene.standard","type":"string"},"name":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"lucene.french","type":"string"}},"type":"string"},"surfaceTemperatureC":{"analyzer":"lucene.standard","dynamic":true,"type":"document"}}},"searchAnalyzer":"lucene.standard"},"latestDefinitionVersion":{"version":0},"name":"index-592","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_1.snaphost deleted file mode 100644 index c4251bb311..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 873 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:01 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1459 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"analyzer":"lucene.standard","analyzers":[{"charFilters":[],"name":"keywordLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"keyword"}},{"charFilters":[],"name":"standardLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"standard"}}],"collectionName":"posts","database":"sample_training","indexID":"687f1f81a799aa2ae9e813d2","mappings":{"dynamic":false,"fields":{"body":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"keywordLowerCase","type":"string"}},"type":"string"},"comments":{"fields":{"author":{"analyzer":"keywordLowerCase","type":"string"},"body":{"analyzer":"lucene.simple","ignoreAbove":255,"type":"string"}},"type":"document"},"tags":{"analyzer":"standardLowerCase","type":"string"}}},"name":"index-734","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_1.snaphost new file mode 100644 index 0000000000..cf27f601ad --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Create_staticMapping/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 873 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:00 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1361 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"analyzer":"lucene.standard","analyzers":[{"charFilters":[],"name":"keywordLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"keyword"}},{"charFilters":[],"name":"standardLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"standard"}}],"collectionName":"posts","database":"sample_training","indexID":"68824e6cb44898105334727f","mappings":{"dynamic":false,"fields":{"body":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"keywordLowerCase","type":"string"}},"type":"string"},"comments":{"fields":{"author":{"analyzer":"keywordLowerCase","type":"string"},"body":{"analyzer":"lucene.simple","ignoreAbove":255,"type":"string"}},"type":"document"},"tags":{"analyzer":"standardLowerCase","type":"string"}}},"name":"index-592","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost deleted file mode 100644 index cd9520cbd3..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 251 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1750 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"movies","database":"sample_mflix","indexID":"687f1f7ca799aa2ae9e81398","latestDefinition":{"mappings":{"dynamic":true}},"latestDefinitionVersion":{"version":0},"name":"index-734","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost new file mode 100644 index 0000000000..9fc62c9ebc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Create_via_file/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 251 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1808 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::createSearchIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"movies","database":"sample_mflix","indexID":"68824e6742be0f23307f4f76","latestDefinition":{"mappings":{"dynamic":true}},"latestDefinitionVersion":{"version":0},"name":"index-592","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost deleted file mode 100644 index ea64fcd0f0..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 115 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::deleteSearchIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost new file mode 100644 index 0000000000..f89ed6e503 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Delete/DELETE_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::deleteSearchIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_687f1f7ca799aa2ae9e81398_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_687f1f7ca799aa2ae9e81398_1.snaphost deleted file mode 100644 index 210cf1b530..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_687f1f7ca799aa2ae9e81398_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 204 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:58 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"movies","database":"sample_mflix","indexID":"687f1f7ca799aa2ae9e81398","mappings":{"dynamic":true,"fields":null},"name":"index-734","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_68824e6742be0f23307f4f76_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_68824e6742be0f23307f4f76_1.snaphost new file mode 100644 index 0000000000..18997a6295 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Describe/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_68824e6742be0f23307f4f76_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 204 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:57 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"movies","database":"sample_mflix","indexID":"68824e6742be0f23307f4f76","mappings":{"dynamic":true,"fields":null},"name":"index-592","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_provider_regions_1.snaphost deleted file mode 100644 index 87b9a9cb48..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 128 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_1.snaphost deleted file mode 100644 index 55af710509..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1798 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:20Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7444f1ab3f84231064","id":"687f1d78a799aa2ae9e80367","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-18","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d77a799aa2ae9e8034e","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d78a799aa2ae9e8035b","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_2.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_2.snaphost deleted file mode 100644 index 3b73f1fd56..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1884 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 116 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:20Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7444f1ab3f84231064","id":"687f1d78a799aa2ae9e80367","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-18","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d78a799aa2ae9e8035c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d78a799aa2ae9e8035b","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_3.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_3.snaphost deleted file mode 100644 index 91c354411a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2177 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://search-18-shard-00-00.sagydj.mongodb-dev.net:27017,search-18-shard-00-01.sagydj.mongodb-dev.net:27017,search-18-shard-00-02.sagydj.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-4a6cow-shard-0","standardSrv":"mongodb+srv://search-18.sagydj.mongodb-dev.net"},"createDate":"2025-07-22T05:11:20Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d7444f1ab3f84231064","id":"687f1d78a799aa2ae9e80367","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-18","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d78a799aa2ae9e8035c","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d78a799aa2ae9e8035b","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..c0407192ee --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_1.snaphost new file mode 100644 index 0000000000..5cbf12bf9e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1802 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd6b448981053346359","id":"68824bd8b4489810533463ce","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-543","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd8b4489810533463be","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd8b4489810533463c6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_2.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_2.snaphost new file mode 100644 index 0000000000..ac66ba0107 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1888 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 109 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd6b448981053346359","id":"68824bd8b4489810533463ce","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-543","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd8b4489810533463c7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd8b4489810533463c6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_3.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_3.snaphost new file mode 100644 index 0000000000..7eb6da213a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2185 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://search-543-shard-00-00.dn2kfl.mongodb-dev.net:27017,search-543-shard-00-01.dn2kfl.mongodb-dev.net:27017,search-543-shard-00-02.dn2kfl.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-hfs6sj-shard-0","standardSrv":"mongodb+srv://search-543.dn2kfl.mongodb-dev.net"},"createDate":"2025-07-24T15:06:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd6b448981053346359","id":"68824bd8b4489810533463ce","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-543","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd8b4489810533463c7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd8b4489810533463c6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 2ecb3da3e8..10cea20bf1 100644 --- a/test/e2e/testdata/.snapshots/TestSearch/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSearch/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:19 GMT +Date: Thu, 24 Jul 2025 15:05:59 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_1.snaphost deleted file mode 100644 index 666f766ef8..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 154 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 71 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f52a799aa2ae9e812ac","clusterName":"search-18","completeDate":null,"createDate":"2025-07-22T05:19:14Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_2.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_2.snaphost deleted file mode 100644 index c5c5f7b277..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_687f1f52a799aa2ae9e812ac_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 174 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 63 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f52a799aa2ae9e812ac","clusterName":"search-18","completeDate":"2025-07-22T05:19:55Z","createDate":"2025-07-22T05:19:14Z","errorMessage":null,"state":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_1.snaphost new file mode 100644 index 0000000000..5d69475956 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 155 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824e24b4489810533471d3","clusterName":"search-543","completeDate":null,"createDate":"2025-07-24T15:15:48Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_2.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_2.snaphost new file mode 100644 index 0000000000..8f9ef206d2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/GET_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_68824e24b4489810533471d3_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 175 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 63 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824e24b4489810533471d3","clusterName":"search-543","completeDate":"2025-07-24T15:16:51Z","createDate":"2025-07-24T15:15:48Z","errorMessage":null,"state":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_search-18_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_search-18_1.snaphost deleted file mode 100644 index 4b7337ce21..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_sampleDatasetLoad_search-18_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 154 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f52a799aa2ae9e812ac","clusterName":"search-18","completeDate":null,"createDate":"2025-07-22T05:19:14Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_search-543_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_search-543_1.snaphost new file mode 100644 index 0000000000..e7316a8ae3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Load_Sample_data/POST_api_atlas_v2_groups_68824bd6b448981053346359_sampleDatasetLoad_search-543_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 155 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 140 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824e24b4489810533471d3","clusterName":"search-543","completeDate":null,"createDate":"2025-07-24T15:15:48Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_1.snaphost index 307644816b..d7f8c44d1c 100644 --- a/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1068 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:16 GMT +Date: Thu, 24 Jul 2025 15:05:58 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2934 +X-Envoy-Upstream-Service-Time: 1704 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:18Z","id":"687f1d7444f1ab3f84231064","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"search-e2e-316","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:59Z","id":"68824bd6b448981053346359","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"search-e2e-979","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_1.snaphost deleted file mode 100644 index 1b685d4aa6..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1788 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:19 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 607 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:20Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d7444f1ab3f84231064","id":"687f1d78a799aa2ae9e80367","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7444f1ab3f84231064/clusters/search-18/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-18","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d77a799aa2ae9e8034e","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d78a799aa2ae9e8035b","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_1.snaphost new file mode 100644 index 0000000000..0c3cd39180 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/POST_api_atlas_v2_groups_68824bd6b448981053346359_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1792 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:00 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 576 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd6b448981053346359","id":"68824bd8b4489810533463ce","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd6b448981053346359/clusters/search-543/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-543","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd8b4489810533463be","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd8b4489810533463c6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost deleted file mode 100644 index da1518f93e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_search_indexes_687f1f7ca799aa2ae9e81398_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 238 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 190 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::updateUserDefinedIndexFields -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"movies","database":"sample_mflix","indexID":"687f1f7ca799aa2ae9e81398","latestDefinition":{"analyzer":"lucene.simple","mappings":{"dynamic":true}},"name":"index-734","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost new file mode 100644 index 0000000000..0e81949b94 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/Update_via_file/PATCH_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_search_indexes_68824e6742be0f23307f4f76_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 238 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:16:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 174 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::updateUserDefinedIndexFields +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"movies","database":"sample_mflix","indexID":"68824e6742be0f23307f4f76","latestDefinition":{"analyzer":"lucene.simple","mappings":{"dynamic":true}},"name":"index-592","queryable":false,"status":"PENDING","type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_sample_mflix_movies_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_sample_mflix_movies_1.snaphost deleted file mode 100644 index 89968f6c4c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_687f1d7444f1ab3f84231064_clusters_search-18_fts_indexes_sample_mflix_movies_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 219 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:06 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 91 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndexes -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"687f1f7ca799aa2ae9e81398","mappings":{"dynamic":true},"name":"index-734","status":"IN_PROGRESS","synonyms":[],"type":"search"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_sample_mflix_movies_1.snaphost b/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_sample_mflix_movies_1.snaphost new file mode 100644 index 0000000000..2ebb05a8eb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearch/list/GET_api_atlas_v2_groups_68824bd6b448981053346359_clusters_search-543_fts_indexes_sample_mflix_movies_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 219 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:04 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndexes +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"68824e6742be0f23307f4f76","mappings":{"dynamic":true},"name":"index-592","status":"IN_PROGRESS","synonyms":[],"type":"search"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearch/memory.json b/test/e2e/testdata/.snapshots/TestSearch/memory.json index dfc7984dc7..18af1b3532 100644 --- a/test/e2e/testdata/.snapshots/TestSearch/memory.json +++ b/test/e2e/testdata/.snapshots/TestSearch/memory.json @@ -1 +1 @@ -{"TestSearch/Create_array_mapping/arrayRand":"AkU=","TestSearch/rand":"At4=","TestSearch/searchGenerateClusterName":"search-18"} \ No newline at end of file +{"TestSearch/Create_array_mapping/arrayRand":"AkQ=","TestSearch/rand":"AlA=","TestSearch/searchGenerateClusterName":"search-543"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost deleted file mode 100644 index 25b154972f..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 340 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:07 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 935 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"analyzer":"lucene.standard","collectionName":"posts","database":"sample_training","indexID":"687f21df44f1ab3f842329b9","mappings":{"dynamic":false,"fields":{"comments":[{"dynamic":true,"type":"document"},{"type":"string"}]}},"name":"index-array-496","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost new file mode 100644 index 0000000000..1fe2d4a8fd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_array_mapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 340 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:26:02 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1176 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"analyzer":"lucene.standard","collectionName":"posts","database":"sample_training","indexID":"6882508ab448981053347843","mappings":{"dynamic":false,"fields":{"comments":[{"dynamic":true,"type":"document"},{"type":"string"}]}},"name":"index-array-994","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost deleted file mode 100644 index 09f709d755..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 551 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:02 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2331 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"analyzer":"lucene.standard","collectionName":"planets","database":"sample_guides","indexID":"687f21daa799aa2ae9e81a27","mappings":{"dynamic":false,"fields":{"mainAtmosphere":{"analyzer":"lucene.standard","type":"string"},"name":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"lucene.french","type":"string"}},"type":"string"},"surfaceTemperatureC":{"analyzer":"lucene.standard","dynamic":true,"type":"document"}}},"name":"index-980","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost new file mode 100644 index 0000000000..2db06f4c8e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_combinedMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 551 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:57 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1655 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"analyzer":"lucene.standard","collectionName":"planets","database":"sample_guides","indexID":"6882508542be0f23307f55d4","mappings":{"dynamic":false,"fields":{"mainAtmosphere":{"analyzer":"lucene.standard","type":"string"},"name":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"lucene.french","type":"string"}},"type":"string"},"surfaceTemperatureC":{"analyzer":"lucene.standard","dynamic":true,"type":"document"}}},"name":"index-578","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost deleted file mode 100644 index 0678f05c0d..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 873 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:05 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2162 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"analyzer":"lucene.standard","analyzers":[{"charFilters":[],"name":"keywordLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"keyword"}},{"charFilters":[],"name":"standardLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"standard"}}],"collectionName":"posts","database":"sample_training","indexID":"687f21dda799aa2ae9e81a37","mappings":{"dynamic":false,"fields":{"body":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"keywordLowerCase","type":"string"}},"type":"string"},"comments":{"fields":{"author":{"analyzer":"keywordLowerCase","type":"string"},"body":{"analyzer":"lucene.simple","ignoreAbove":255,"type":"string"}},"type":"document"},"tags":{"analyzer":"standardLowerCase","type":"string"}}},"name":"index-980","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost new file mode 100644 index 0000000000..b27e473dd7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_staticMapping/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 873 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:59 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 2329 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"analyzer":"lucene.standard","analyzers":[{"charFilters":[],"name":"keywordLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"keyword"}},{"charFilters":[],"name":"standardLowerCase","tokenFilters":[{"type":"lowercase"}],"tokenizer":{"type":"standard"}}],"collectionName":"posts","database":"sample_training","indexID":"6882508742be0f23307f55e8","mappings":{"dynamic":false,"fields":{"body":{"analyzer":"lucene.whitespace","multi":{"mySecondaryAnalyzer":{"analyzer":"keywordLowerCase","type":"string"}},"type":"string"},"comments":{"fields":{"author":{"analyzer":"keywordLowerCase","type":"string"},"body":{"analyzer":"lucene.simple","ignoreAbove":255,"type":"string"}},"type":"document"},"tags":{"analyzer":"standardLowerCase","type":"string"}}},"name":"index-578","searchAnalyzer":"lucene.standard","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost deleted file mode 100644 index c9c3f56c25..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 190 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:58 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2300 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"movies","database":"sample_mflix","indexID":"687f21d744f1ab3f8423299b","mappings":{"dynamic":true},"name":"index-980","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost new file mode 100644 index 0000000000..12045bfaf1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Create_via_file/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 190 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:54 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 2188 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::createFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"movies","database":"sample_mflix","indexID":"68825082b44898105334781c","mappings":{"dynamic":true},"name":"index-578","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_search_indexes_687f21d744f1ab3f8423299b_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_search_indexes_687f21d744f1ab3f8423299b_1.snaphost deleted file mode 100644 index ce68c04abd..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_search_indexes_687f21d744f1ab3f8423299b_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchIndexConfigResource::deleteSearchIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_search_indexes_68825082b44898105334781c_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_search_indexes_68825082b44898105334781c_1.snaphost new file mode 100644 index 0000000000..616645999b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Delete/DELETE_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_search_indexes_68825082b44898105334781c_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchIndexConfigResource::deleteSearchIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost deleted file mode 100644 index d081d2a70d..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 190 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:01 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 86 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndex -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"collectionName":"movies","database":"sample_mflix","indexID":"687f21d744f1ab3f8423299b","mappings":{"dynamic":true},"name":"index-980","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost new file mode 100644 index 0000000000..d692ece29e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Describe/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 190 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:56 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 88 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndex +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"collectionName":"movies","database":"sample_mflix","indexID":"68825082b44898105334781c","mappings":{"dynamic":true},"name":"index-578","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_provider_regions_1.snaphost deleted file mode 100644 index 7661e921f2..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_1.snaphost deleted file mode 100644 index 614c7df57e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1802 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:12 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:11Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f87a799aa2ae9e813f8","id":"687f1f8ba799aa2ae9e814d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-206","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1f8ba799aa2ae9e814c6","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f8ba799aa2ae9e814ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_2.snaphost deleted file mode 100644 index dd58788a6a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1888 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:12 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 97 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:11Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f87a799aa2ae9e813f8","id":"687f1f8ba799aa2ae9e814d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-206","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f8ba799aa2ae9e814cf","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f8ba799aa2ae9e814ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_3.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_3.snaphost deleted file mode 100644 index 4539e35447..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2185 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 108 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://search-206-shard-00-00.izvctq.mongodb-dev.net:27017,search-206-shard-00-01.izvctq.mongodb-dev.net:27017,search-206-shard-00-02.izvctq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-hqegu5-shard-0","standardSrv":"mongodb+srv://search-206.izvctq.mongodb-dev.net"},"createDate":"2025-07-22T05:20:11Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1f87a799aa2ae9e813f8","id":"687f1f8ba799aa2ae9e814d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-206","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1f8ba799aa2ae9e814cf","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f8ba799aa2ae9e814ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..6155ed3d1a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 112 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_1.snaphost new file mode 100644 index 0000000000..d756a431de --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1802 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:10 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:17:09Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824e70b4489810533472af","id":"68824e7542be0f23307f5081","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-400","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824e7542be0f23307f5071","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e7542be0f23307f5079","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_2.snaphost new file mode 100644 index 0000000000..f38f05c9d5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1888 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 112 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:17:09Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824e70b4489810533472af","id":"68824e7542be0f23307f5081","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-400","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e7542be0f23307f507a","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e7542be0f23307f5079","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_3.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_3.snaphost new file mode 100644 index 0000000000..73364e72d1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2185 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 115 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://search-400-shard-00-00.tqnxe1.mongodb-dev.net:27017,search-400-shard-00-01.tqnxe1.mongodb-dev.net:27017,search-400-shard-00-02.tqnxe1.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-ea1xul-shard-0","standardSrv":"mongodb+srv://search-400.tqnxe1.mongodb-dev.net"},"createDate":"2025-07-24T15:17:09Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824e70b4489810533472af","id":"68824e7542be0f23307f5081","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-400","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824e7542be0f23307f507a","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e7542be0f23307f5079","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 5a53e85278..a14cd951d9 100644 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:20:10 GMT +Date: Thu, 24 Jul 2025 15:17:08 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_1.snaphost deleted file mode 100644 index f86ccf8534..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 155 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 79 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f2197a799aa2ae9e819b0","clusterName":"search-206","completeDate":null,"createDate":"2025-07-22T05:28:55Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_2.snaphost deleted file mode 100644 index 0cc45e6c80..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_687f2197a799aa2ae9e819b0_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 175 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:29:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f2197a799aa2ae9e819b0","clusterName":"search-206","completeDate":"2025-07-22T05:29:57Z","createDate":"2025-07-22T05:28:55Z","errorMessage":null,"state":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_1.snaphost new file mode 100644 index 0000000000..a3a7189111 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 155 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"6882505842be0f23307f557a","clusterName":"search-400","completeDate":null,"createDate":"2025-07-24T15:25:12Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_2.snaphost new file mode 100644 index 0000000000..daefde7dca --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/GET_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_6882505842be0f23307f557a_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 175 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:54 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::getSampleDatasetLoadStatus +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"6882505842be0f23307f557a","clusterName":"search-400","completeDate":"2025-07-24T15:25:51Z","createDate":"2025-07-24T15:25:12Z","errorMessage":null,"state":"COMPLETED"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_search-206_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_search-206_1.snaphost deleted file mode 100644 index e4e7cb90a4..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_sampleDatasetLoad_search-206_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 155 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:28:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 165 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f2197a799aa2ae9e819b0","clusterName":"search-206","completeDate":null,"createDate":"2025-07-22T05:28:55Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_search-400_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_search-400_1.snaphost new file mode 100644 index 0000000000..b7fa07e97c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Load_Sample_data/POST_api_atlas_v2_groups_68824e70b4489810533472af_sampleDatasetLoad_search-400_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 155 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 155 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSampleDatasetLoadResource::sampleDatasetLoad +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"6882505842be0f23307f557a","clusterName":"search-400","completeDate":null,"createDate":"2025-07-24T15:25:12Z","errorMessage":null,"state":"WORKING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_1.snaphost index c978a8d613..ab7deb2959 100644 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1068 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:07 GMT +Date: Thu, 24 Jul 2025 15:17:04 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 3096 +X-Envoy-Upstream-Service-Time: 4131 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:20:10Z","id":"687f1f87a799aa2ae9e813f8","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"search-e2e-425","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:17:08Z","id":"68824e70b4489810533472af","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"search-e2e-277","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_1.snaphost deleted file mode 100644 index 91ef738f23..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1792 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:11 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 617 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:20:11Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1f87a799aa2ae9e813f8","id":"687f1f8ba799aa2ae9e814d6","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1f87a799aa2ae9e813f8/clusters/search-206/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-206","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1f8ba799aa2ae9e814c6","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1f8ba799aa2ae9e814ce","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_1.snaphost new file mode 100644 index 0000000000..ae07601377 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/POST_api_atlas_v2_groups_68824e70b4489810533472af_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1792 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:09 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 638 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:17:09Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824e70b4489810533472af","id":"68824e7542be0f23307f5081","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824e70b4489810533472af/clusters/search-400/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"search-400","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824e7542be0f23307f5071","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824e7542be0f23307f5079","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost deleted file mode 100644 index 9f1e2e7183..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_687f21d744f1ab3f8423299b_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 217 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:01 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 131 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::updateUserDefinedFTSIndexFields -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"687f21d744f1ab3f8423299b","mappings":{"dynamic":true},"name":"index-980","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost new file mode 100644 index 0000000000..e902701c78 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/Update_via_file/PATCH_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_68825082b44898105334781c_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 217 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:25:56 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 144 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::updateUserDefinedFTSIndexFields +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"68825082b44898105334781c","mappings":{"dynamic":true},"name":"index-578","status":"IN_PROGRESS","synonyms":[],"type":"search"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_sample_mflix_movies_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_sample_mflix_movies_1.snaphost deleted file mode 100644 index 88d6f14d26..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_687f1f87a799aa2ae9e813f8_clusters_search-206_fts_indexes_sample_mflix_movies_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 219 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:30:09 GMT -Deprecation: Thu, 30 May 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Mon, 30 Nov 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 70 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndexes -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -[{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"687f21d744f1ab3f8423299b","mappings":{"dynamic":true},"name":"index-980","status":"IN_PROGRESS","synonyms":[],"type":"search"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_sample_mflix_movies_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_sample_mflix_movies_1.snaphost new file mode 100644 index 0000000000..ffb549e4f6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/list/GET_api_atlas_v2_groups_68824e70b4489810533472af_clusters_search-400_fts_indexes_sample_mflix_movies_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 219 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:26:03 GMT +Deprecation: Thu, 30 May 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Mon, 30 Nov 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 85 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFTSIndexConfigResource::getFTSIndexes +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +[{"analyzer":"lucene.simple","collectionName":"movies","database":"sample_mflix","indexID":"68825082b44898105334781c","mappings":{"dynamic":true},"name":"index-578","status":"IN_PROGRESS","synonyms":[],"type":"search"}] \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchDeprecated/memory.json b/test/e2e/testdata/.snapshots/TestSearchDeprecated/memory.json index b4b6cfb43b..5419565b5d 100644 --- a/test/e2e/testdata/.snapshots/TestSearchDeprecated/memory.json +++ b/test/e2e/testdata/.snapshots/TestSearchDeprecated/memory.json @@ -1 +1 @@ -{"TestSearchDeprecated/Create_array_mapping/arrayRand":"AfA=","TestSearchDeprecated/rand":"A9Q=","TestSearchDeprecated/searchGenerateClusterName":"search-206"} \ No newline at end of file +{"TestSearchDeprecated/Create_array_mapping/arrayRand":"A+I=","TestSearchDeprecated/rand":"AkI=","TestSearchDeprecated/searchGenerateClusterName":"search-400"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index 4f36f09b6f..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 152 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 92 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost deleted file mode 100644 index 96562cdfca..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 148 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..5cd2e554e0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 152 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 89 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost new file mode 100644 index 0000000000..e6f7728381 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 148 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 90 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index 3cb7f597b0..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 152 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:10 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 171 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::createSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..c0481503a9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Create_search_node/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 152 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:05 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 171 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::createSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index 77b492d0d6..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Date: Tue, 22 Jul 2025 05:35:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type: application/vnd.atlas.2024-05-30+json -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 151 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::deleteSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..3fe0c3135b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Delete_search_nodes/DELETE_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Date: Thu, 24 Jul 2025 15:31:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type: application/vnd.atlas.2024-05-30+json +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 180 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::deleteSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_1.snaphost deleted file mode 100644 index 24ba348729..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1806 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:04 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:12:03Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1da3a799aa2ae9e80a88","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-363","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1da3a799aa2ae9e80a78","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1da3a799aa2ae9e80a80","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_2.snaphost deleted file mode 100644 index 5e800c0da5..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1892 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 98 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:12:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"6.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1da3a799aa2ae9e80a88","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-363","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1da3a799aa2ae9e80a81","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1da3a799aa2ae9e80a80","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_3.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_3.snaphost deleted file mode 100644 index 4161eebd14..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2193 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:08 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 118 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-363-shard-00-00.yyejbx.mongodb-dev.net:27017,cluster-363-shard-00-01.yyejbx.mongodb-dev.net:27017,cluster-363-shard-00-02.yyejbx.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-seni6q-shard-0","standardSrv":"mongodb+srv://cluster-363.yyejbx.mongodb-dev.net"},"createDate":"2025-07-22T05:12:03Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"6.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1da3a799aa2ae9e80a88","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-363","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1da3a799aa2ae9e80a81","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1da3a799aa2ae9e80a80","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_provider_regions_1.snaphost deleted file mode 100644 index f7150d08ce..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/provider/regions?includeCount=true&providers=AWS&tier=M20&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M20"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_1.snaphost new file mode 100644 index 0000000000..96550b6716 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1806 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:16 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:16Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824ba942be0f23307f398e","id":"68824bacb448981053345f07","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-315","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824babb448981053345ec2","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bacb448981053345eea","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_2.snaphost new file mode 100644 index 0000000000..c2dc54feb9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1892 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:17 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"6.0","globalClusterSelfManagedSharding":false,"groupId":"68824ba942be0f23307f398e","id":"68824bacb448981053345f07","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-315","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bacb448981053345eeb","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bacb448981053345eea","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_3.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_3.snaphost new file mode 100644 index 0000000000..faae9509cf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2193 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 112 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-315-shard-00-00.ew9rar.mongodb-dev.net:27017,cluster-315-shard-00-01.ew9rar.mongodb-dev.net:27017,cluster-315-shard-00-02.ew9rar.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-sa5ztx-shard-0","standardSrv":"mongodb+srv://cluster-315.ew9rar.mongodb-dev.net"},"createDate":"2025-07-24T15:05:16Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"6.0","globalClusterSelfManagedSharding":false,"groupId":"68824ba942be0f23307f398e","id":"68824bacb448981053345f07","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-315","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bacb448981053345eeb","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bacb448981053345eea","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..21c805d7bb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/provider/regions?includeCount=true&providers=AWS&tier=M20&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M20"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index 4dc6a5f247..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 148 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:20 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..32ddaf62a7 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_created/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 148 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:32 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S30_LOWCPU_NVME","nodeCount":2}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index 5b5676a223..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 149 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:35:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 72 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..37f5a8dd9a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/List_+_verify_updated/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 149 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:31:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 91 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_1.snaphost index 750ec87e33..c840bd0132 100644 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1073 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:59 GMT +Date: Thu, 24 Jul 2025 15:05:13 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2900 +X-Envoy-Upstream-Service-Time: 1778 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:12:02Z","id":"687f1d9fa799aa2ae9e809fe","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"searchNodes-e2e-827","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:15Z","id":"68824ba942be0f23307f398e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"searchNodes-e2e-991","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_1.snaphost deleted file mode 100644 index 9ecaf6e0a9..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1796 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:03 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 572 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:12:03Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1da3a799aa2ae9e80a88","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9fa799aa2ae9e809fe/clusters/cluster-363/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-363","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1da3a799aa2ae9e80a78","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1da3a799aa2ae9e80a80","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_1.snaphost new file mode 100644 index 0000000000..986c4cdab2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/POST_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1796 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:15 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 568 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:16Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824ba942be0f23307f398e","id":"68824bacb448981053345f07","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba942be0f23307f398e/clusters/cluster-315/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"6.0","mongoDBVersion":"6.0.25","name":"cluster-315","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824babb448981053345ec2","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M20","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bacb448981053345eea","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index b4ed5260ed..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 153 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 74 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost deleted file mode 100644 index c05f4b4980..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 149 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:35:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..2c0de07b82 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 153 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"UPDATING"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost new file mode 100644 index 0000000000..54777f99f3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 149 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:31:09 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 100 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index eb50fab689..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 149 -Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:27:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 191 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::updateSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"groupId":"687f1d9fa799aa2ae9e809fe","id":"687f1f4e44f1ab3f84232295","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..5f7de26c5f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Update_search_node/PATCH_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 149 +Content-Type: application/vnd.atlas.2024-05-30+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:22:33 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 162 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::updateSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"groupId":"68824ba942be0f23307f398e","id":"68824dbd42be0f23307f4bf5","specs":[{"instanceSize":"S20_HIGHCPU_NVME","nodeCount":3}],"stateName":"IDLE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost deleted file mode 100644 index a80c4b3920..0000000000 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_687f1d9fa799aa2ae9e809fe_clusters_cluster-363_search_deployment_1.snaphost +++ /dev/null @@ -1,17 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2 -Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Vary: Accept-Encoding -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 76 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost b/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost new file mode 100644 index 0000000000..2865fc5280 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/Verify_no_search_node_setup_yet/GET_api_atlas_v2_groups_68824ba942be0f23307f398e_clusters_cluster-315_search_deployment_1.snaphost @@ -0,0 +1,17 @@ +HTTP/2.0 200 OK +Content-Length: 2 +Content-Type: application/vnd.atlas.2025-03-12+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:14:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 87 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasSearchDeploymentResource::getSearchDeployment +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSearchNodes/memory.json b/test/e2e/testdata/.snapshots/TestSearchNodes/memory.json index f66d7f8550..c1e69dfe0e 100644 --- a/test/e2e/testdata/.snapshots/TestSearchNodes/memory.json +++ b/test/e2e/testdata/.snapshots/TestSearchNodes/memory.json @@ -1 +1 @@ -{"TestSearchNodes/clusterGenerateClusterName":"cluster-363"} \ No newline at end of file +{"TestSearchNodes/clusterGenerateClusterName":"cluster-315"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost deleted file mode 100644 index 680f162865..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1062 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:32 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1355 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::createServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"connectionStrings":{},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost new file mode 100644 index 0000000000..e1b95df38c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Create/POST_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 1062 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:47 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1033 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::createServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"connectionStrings":{},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost deleted file mode 100644 index b7bc1c206d..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 377 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::deleteServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost new file mode 100644 index 0000000000..5a1d6ec5f1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Delete/DELETE_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 411 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::deleteServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost deleted file mode 100644 index df825a1c04..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1122 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 89 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-605.wcewmpp.mongodb-dev.net"},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost new file mode 100644 index 0000000000..f593f4b90b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Describe/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1126 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 82 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-200.apfd26z.mongodb-dev.net"},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost deleted file mode 100644 index 427e735906..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1312 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 164 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getAllServerlessInstances -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-605.wcewmpp.mongodb-dev.net"},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost new file mode 100644 index 0000000000..8c0513403d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/List/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1312 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 175 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getAllServerlessInstances +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-200.apfd26z.mongodb-dev.net"},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/POST_api_atlas_v2_groups_1.snaphost index fd10e58fcc..2d7258343d 100644 --- a/test/e2e/testdata/.snapshots/TestServerless/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestServerless/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1072 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:28 GMT +Date: Thu, 24 Jul 2025 15:05:44 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 3542 +X-Envoy-Upstream-Service-Time: 2926 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:32Z","id":"687f1d80a799aa2ae9e8054b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"serverless-e2e-706","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:47Z","id":"68824bc8b4489810533461eb","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"serverless-e2e-684","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost deleted file mode 100644 index bddf0aaecf..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1126 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1003 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::updateServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-605.wcewmpp.mongodb-dev.net"},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost new file mode 100644 index 0000000000..9546c91476 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Update/PATCH_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1126 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 676 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::updateServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-200.apfd26z.mongodb-dev.net"},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost deleted file mode 100644 index da083a9985..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1062 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 82 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"connectionStrings":{},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_2.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_2.snaphost deleted file mode 100644 index 9b8e9bd8d0..0000000000 --- a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_687f1d80a799aa2ae9e8054b_serverless_cluster-605_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1058 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 91 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"connectionStrings":{},"createDate":"2025-07-22T05:11:32Z","groupId":"687f1d80a799aa2ae9e8054b","id":"687f1d8444f1ab3f84231468","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d80a799aa2ae9e8054b/serverless/cluster-605/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-605","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-23T05:11:32Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost new file mode 100644 index 0000000000..bf55402e3e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1062 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:48 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 110 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"connectionStrings":{},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"CREATING","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_2.snaphost b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_2.snaphost new file mode 100644 index 0000000000..ae67faa7ba --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestServerless/Watch/GET_api_atlas_v2_groups_68824bc8b4489810533461eb_serverless_cluster-200_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1123 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyServerlessInstanceDescriptionResource::getServerlessInstance +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"connectionStrings":{"standardSrv":"mongodb+srv://cluster-200.apfd26z.mongodb-dev.net"},"createDate":"2025-07-24T15:05:47Z","groupId":"68824bc8b4489810533461eb","id":"68824bcbb44898105334625f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bc8b4489810533461eb/serverless/cluster-200/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBVersion":"8.0.12","name":"cluster-200","providerSettings":{"backingProviderName":"AWS","effectiveDiskSizeGBLimit":5,"effectiveInstanceSizeName":"FLEX","effectiveProviderName":"TENANT","nextBackupDate":"2025-07-25T15:05:47Z","providerName":"SERVERLESS","regionName":"US_EAST_1","tenantBackupEnabled":true},"serverlessBackupOptions":{"serverlessContinuousBackupEnabled":false},"stateName":"IDLE","tags":[{"key":"env","value":"test"}],"terminationProtectionEnabled":false} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestServerless/memory.json b/test/e2e/testdata/.snapshots/TestServerless/memory.json index 45e8bff57e..1d40583e17 100644 --- a/test/e2e/testdata/.snapshots/TestServerless/memory.json +++ b/test/e2e/testdata/.snapshots/TestServerless/memory.json @@ -1 +1 @@ -{"TestServerless/clusterName":"cluster-605"} \ No newline at end of file +{"TestServerless/clusterName":"cluster-200"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost deleted file mode 100644 index be8fb0741a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:43 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="lyhwpVlIp/Tx9a63GtNeXoj0D3RKOrYP", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 4 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost deleted file mode 100644 index e88694a2fe..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 457 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 78 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.197/32","comment":"IP added with atlas quickstart","groupId":"687f1d84a799aa2ae9e805b9","ipAddress":"192.168.0.197","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/accessList/192.168.0.197%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost new file mode 100644 index 0000000000..58591beac3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:57 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="Ndcj1r2KhH3zwn00lbZF13IRpMZDYKnj", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost new file mode 100644 index 0000000000..2e435017fb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Check_accessListIp_was_correctly_added/GET_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 457 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:57 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 85 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::getAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.123/32","comment":"IP added with atlas quickstart","groupId":"68824b8fb448981053345b19","ipAddress":"192.168.0.123","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/accessList/192.168.0.123%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost deleted file mode 100644 index 7bd8dc0cf3..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost +++ /dev/null @@ -1,7 +0,0 @@ -HTTP/2.0 401 Unauthorized -Date: Tue, 22 Jul 2025 05:11:45 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="eGTmhK7P0Pfp80rN3gFnS8gxZ/Jr2VEA", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 -Content-Length: 0 - diff --git a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost deleted file mode 100644 index 2643aae7fa..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 385 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost new file mode 100644 index 0000000000..badb06ae1a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost @@ -0,0 +1,7 @@ +HTTP/2.0 401 Unauthorized +Date: Thu, 24 Jul 2025 15:04:59 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="8mUgV9smua3fAzphsf/ibfADyzWOS4x7", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 +Content-Length: 0 + diff --git a/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost new file mode 100644 index 0000000000..78cef95b44 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/DELETE_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 727 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost deleted file mode 100644 index 6ad42a79ed..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:44 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="WlTQrEpv+//h04g4uqyjd4egj+x40p8e", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost deleted file mode 100644 index 8367fa10c1..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1689 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:44 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f84231515","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost new file mode 100644 index 0000000000..61aed0312d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:58 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="k+xYME/ElIc9+BTkexYcEMmKMtMm1+An", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost new file mode 100644 index 0000000000..17cbaea52c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Describe_Cluster/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1689 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:58 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 96 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b92b448981053345b99","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_1.snaphost deleted file mode 100644 index 7c9fad3469..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:44 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="39/0PfgTVVqazpEvpAIX8AgBSXKzRMt8", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_2.snaphost deleted file mode 100644 index 138235e173..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_admin_cluster-63_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 382 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:44 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 78 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","groupId":"687f1d84a799aa2ae9e805b9","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/databaseUsers/admin/cluster-63","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"cluster-63","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_1.snaphost new file mode 100644 index 0000000000..f5adc136b4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:58 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="6eqZiXYprPzZC89dyc1Ne/uGu/rWBu6M", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_2.snaphost new file mode 100644 index 0000000000..03917c7fbe --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Describe_DB_User/GET_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_admin_cluster-370_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 384 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 93 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::getUserByName +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","groupId":"68824b8fb448981053345b19","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/databaseUsers/admin/cluster-370","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"cluster-370","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost deleted file mode 100644 index c67d9267d6..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:43 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="paWrx/Z8Y/4B7oIn4n9kob2zdQmegAuS", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_10.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_10.snaphost deleted file mode 100644 index adaff9291f..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_10.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 118 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_11.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_11.snaphost deleted file mode 100644 index 766d82704a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_11.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:58 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="AY8AEjyFwJ3A5wa181Ev/WPw/qZpR9/E", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_12.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_12.snaphost deleted file mode 100644 index 1c27dc8f75..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_12.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_13.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_13.snaphost deleted file mode 100644 index 1d2c8802cb..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_13.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:02 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="W2PYdhf3YDsY5CuHc6AM5XYQ3XuHCcCE", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_14.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_14.snaphost deleted file mode 100644 index f75d6821fc..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_14.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:02 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 110 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_15.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_15.snaphost deleted file mode 100644 index aab657578d..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_15.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:06 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="EZ0KyGcXadpGbMZfzXSRdQDiRfmWP5Zc", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_16.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_16.snaphost deleted file mode 100644 index 1979e6ed6e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_16.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:06 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_17.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_17.snaphost deleted file mode 100644 index 912a869707..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_17.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:10 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="uvx/8AgWpIbR3aMgeNNA3PfYsxEtAv38", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 4 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_18.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_18.snaphost deleted file mode 100644 index 0c24b50f4b..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_18.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:11 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_19.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_19.snaphost deleted file mode 100644 index 83ceb163c4..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_19.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:15 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="eO5duo3pFxTYon0GWA71bwqS9CynUnao", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost deleted file mode 100644 index faab7c60e9..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1689 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f84231515","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_20.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_20.snaphost deleted file mode 100644 index 1d5129ae18..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_20.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 202 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:12:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 95 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-98 exists in group 687f1d84a799aa2ae9e805b9.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-98","687f1d84a799aa2ae9e805b9"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost deleted file mode 100644 index 5013f0c21c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:43 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="hapP88pQzsJNWNzk2XH/+x1rzMHYCG0d", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost deleted file mode 100644 index a34f08660b..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1739 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:43 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 95 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost deleted file mode 100644 index c765d29b89..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:45 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="+j7vt2zNj7zkA2L92dxJtYW08Djk1tMr", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 4 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost deleted file mode 100644 index fea49f87d1..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_7.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_7.snaphost deleted file mode 100644 index 16c8ada31c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_7.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:49 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="199ACJLoUGAGNWKvQUV3sp0BXObD0115", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_8.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_8.snaphost deleted file mode 100644 index 137165b8ac..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_8.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1712 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:49 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 118 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-ekrvc0o-shard-00-00.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-01.o55invu.mongodb-dev.net:27017,ac-ekrvc0o-shard-00-02.o55invu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-y0zbjd-shard-0","standardSrv":"mongodb+srv://cluster-98.o55invu.mongodb-dev.net"},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_9.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_9.snaphost deleted file mode 100644 index 26b861032c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_9.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:54 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="7EXOOvQviRrwUPJgNoPF67Mz+lDqUGKq", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost new file mode 100644 index 0000000000..b2f6a4b837 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:57 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="lGPVad6HTLo6D2gXzZgM71p4IOUTYF5P", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_10.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_10.snaphost new file mode 100644 index 0000000000..d0f6c2eba5 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_10.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:08 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_11.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_11.snaphost new file mode 100644 index 0000000000..518c4e30fc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_11.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:12 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="+x3A7aY9m7Hve2FLz/MhyNX+53idXHOv", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_12.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_12.snaphost new file mode 100644 index 0000000000..335f3dab7e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_12.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:13 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 94 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_13.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_13.snaphost new file mode 100644 index 0000000000..baacf880e2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_13.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:17 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="JsgMn1AC0N2FZl655bRTrvTREFXoYKs5", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_14.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_14.snaphost new file mode 100644 index 0000000000..a6ba632981 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_14.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:17 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_15.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_15.snaphost new file mode 100644 index 0000000000..12e59711e2 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_15.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:21 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="L+ZLQIhZpAA5tc7tM3fC/8o5e2xxoKif", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 4 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_16.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_16.snaphost new file mode 100644 index 0000000000..1c9274d438 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_16.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 111 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_17.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_17.snaphost new file mode 100644 index 0000000000..1867869103 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_17.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:25 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="chzh0qfeQYt71bXs3tbeFx1Nrq/9NBuc", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_18.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_18.snaphost new file mode 100644 index 0000000000..7f58fa847c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_18.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_19.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_19.snaphost new file mode 100644 index 0000000000..6d00f995a3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_19.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:30 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="MtbkU1RWD78lh2SXRUm3D+DQZvq2DrbA", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 4 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost new file mode 100644 index 0000000000..317d41d1f3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1689 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:57 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b92b448981053345b99","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_20.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_20.snaphost new file mode 100644 index 0000000000..319b6f4b8e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_20.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:30 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_21.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_21.snaphost new file mode 100644 index 0000000000..3063df2e01 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_21.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:34 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="obMaQeMz03kIhwjjtYzPTswygMTjsn3E", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_22.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_22.snaphost new file mode 100644 index 0000000000..edee806eff --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_22.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 202 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:34 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 75 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-61 exists in group 68824b8fb448981053345b19.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-61","68824b8fb448981053345b19"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost new file mode 100644 index 0000000000..2b26317eae --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:57 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="tk54kvLrAzAt/O+Rob1Pzavaf8nEYIMH", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost new file mode 100644 index 0000000000..735e666959 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1739 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:58 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 101 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost new file mode 100644 index 0000000000..ee199c570b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:00 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="5W12/OjN8uepfGxjCMcqvv7ZUydQ5tjG", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost new file mode 100644 index 0000000000..d0c9c5194c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 99 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_7.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_7.snaphost new file mode 100644 index 0000000000..18bb4dd468 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_7.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:04 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="vSyiCfsjmtR2YTxTYozaq11HQnHiYgmK", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_8.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_8.snaphost new file mode 100644 index 0000000000..dd7ac89b98 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_8.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1712 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:04 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 97 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_9.snaphost b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_9.snaphost new file mode 100644 index 0000000000..35fdaca3fc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_9.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:08 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="NCXFxTjfuKmMt35wg+3rLQbHrQzTT4X2", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_1.snaphost index c7fea90a10..61569f3962 100644 --- a/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_1.snaphost @@ -1,10 +1,10 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:32 GMT +Date: Thu, 24 Jul 2025 15:04:47 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="SKxgNu2WnncHb0P+bVz/EeYdZfWMdN69", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="djM/7OcwXIjBn/utB22KWQjQ/jsvAUr3", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 { "error" : 401, diff --git a/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_2.snaphost index 821a920b10..f715992ac4 100644 --- a/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetup/POST_api_atlas_v2_groups_2.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1067 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:32 GMT +Date: Thu, 24 Jul 2025 15:04:47 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2855 +X-Envoy-Upstream-Service-Time: 1156 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:34Z","id":"687f1d84a799aa2ae9e805b9","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-e2e-857","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:48Z","id":"68824b8fb448981053345b19","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-e2e-510","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost deleted file mode 100644 index 30643e32ba..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:38 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="1+zlDVtBeRkxKQbEHtY/gKUDn6useYIU", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost deleted file mode 100644 index b16b29fc85..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1438 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:38 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 115 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost deleted file mode 100644 index 1929503a17..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_3.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:42 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="F/zmJFmAKKxBTAqfa+/BTroelSEbsU9a", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost deleted file mode 100644 index 445af94724..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1434 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost deleted file mode 100644 index c6611b98f7..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_5.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:42 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="hAkJX/PoZawr9B/Y7K2Z5Yfzs/2ZB/hr", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 4 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost deleted file mode 100644 index 496946dc8a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_cluster-98_6.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1434 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:37Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f8423151d","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost new file mode 100644 index 0000000000..1e6a441989 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:52 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="SFg8aBWjDM3Dxj0Qa9fB94Sgc1EZtCaK", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost new file mode 100644 index 0000000000..d4d2030319 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1438 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:52 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 120 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost new file mode 100644 index 0000000000..fde55760dd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_3.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:56 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="6MEQvqhJRGEzKuINCAb8elUXoiwVN9Pq", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost new file mode 100644 index 0000000000..17262a4214 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1739 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 113 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost new file mode 100644 index 0000000000..3b281c07c1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_5.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:56 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="OWS6+lK604GRxz0+iPqtgKa3WE84QRI+", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost new file mode 100644 index 0000000000..a02ec39a7e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_cluster-61_6.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1739 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 112 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-0nvr7cw-shard-00-00.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-01.5c22fzu.mongodb-dev.net:27017,ac-0nvr7cw-shard-00-02.5c22fzu.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6wvvs-shard-0","standardSrv":"mongodb+srv://cluster-61.5c22fzu.mongodb-dev.net"},"createDate":"2025-07-24T15:04:51Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b93b448981053345ba1","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost new file mode 100644 index 0000000000..0ace8d3037 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 200 OK +Content-Length: 3 +Content-Type: text/plain +Date: Thu, 24 Jul 2025 15:04:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +8.0 \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost deleted file mode 100644 index 9cc70ccabd..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:36 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="r7FvRWsMPNmpdHNY56GyiNQ2bXP805As", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost deleted file mode 100644 index 240f60f9de..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_accessList_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 457 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 134 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.197/32","comment":"IP added with atlas quickstart","groupId":"687f1d84a799aa2ae9e805b9","ipAddress":"192.168.0.197","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/accessList/192.168.0.197%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_1.snaphost deleted file mode 100644 index 852cd33089..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:36 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="rYrySoEGPx8etB2agToz8NK8JIYqORBT", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_2.snaphost deleted file mode 100644 index f69313734c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_clusters_2.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1388 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1518 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:37Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d84a799aa2ae9e805b9","id":"687f1d8944f1ab3f84231521","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/clusters/cluster-98/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-98","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8944f1ab3f84231515","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d8944f1ab3f8423151c","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_1.snaphost deleted file mode 100644 index f6e0f28e53..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_1.snaphost +++ /dev/null @@ -1,13 +0,0 @@ -HTTP/2.0 401 Unauthorized -Content-Length: 106 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:35 GMT -Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="qR3Rr+/XwQBK5jsU78Dodcu9LyJ1BcdP", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 - -{ - "error" : 401, - "reason" : "Unauthorized", - "detail" : "You are not authorized for this resource." -} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_2.snaphost deleted file mode 100644 index 34c2af7b6a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_687f1d84a799aa2ae9e805b9_databaseUsers_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 382 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 762 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"awsIAMType":"NONE","databaseName":"admin","groupId":"687f1d84a799aa2ae9e805b9","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d84a799aa2ae9e805b9/databaseUsers/admin/cluster-63","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"cluster-63","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost new file mode 100644 index 0000000000..cc8a927a31 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:50 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="BR+S7fBv7Z71k2RYUJZ7Y6c2p0nxKcBT", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost new file mode 100644 index 0000000000..49e6ee7613 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_accessList_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 457 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 153 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasNetworkAccessListResource::addAtlasWhitelist +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/accessList?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cidrBlock":"192.168.0.123/32","comment":"IP added with atlas quickstart","groupId":"68824b8fb448981053345b19","ipAddress":"192.168.0.123","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/accessList/192.168.0.123%2F32","rel":"self"}]}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_1.snaphost new file mode 100644 index 0000000000..301034f68e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:50 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="CbAkwcdBfmmWsUJ9I1iYzTqsiJJ4vkXu", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_2.snaphost new file mode 100644 index 0000000000..d516fbcee3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_clusters_2.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1388 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:50 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 1713 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:04:51Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b8fb448981053345b19","id":"68824b93b448981053345ba5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/clusters/cluster-61/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-61","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b92b448981053345b99","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824b93b448981053345ba0","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[{"key":"env","value":"e2etest"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_1.snaphost new file mode 100644 index 0000000000..95ffd99d72 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_1.snaphost @@ -0,0 +1,13 @@ +HTTP/2.0 401 Unauthorized +Content-Length: 106 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:04:49 GMT +Server: mdbws +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="gBOAWUO7R9DlKmrCDSJde9q++jPd7a7U", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 + +{ + "error" : 401, + "reason" : "Unauthorized", + "detail" : "You are not authorized for this resource." +} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_2.snaphost b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_2.snaphost new file mode 100644 index 0000000000..4b59320087 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetup/Run/POST_api_atlas_v2_groups_68824b8fb448981053345b19_databaseUsers_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 201 Created +Content-Length: 384 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:49 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 734 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"awsIAMType":"NONE","databaseName":"admin","groupId":"68824b8fb448981053345b19","labels":[],"ldapAuthType":"NONE","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8fb448981053345b19/databaseUsers/admin/cluster-370","rel":"self"}],"oidcAuthType":"NONE","roles":[{"databaseName":"admin","roleName":"atlasAdmin"}],"scopes":[],"username":"cluster-370","x509Type":"NONE"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetup/memory.json b/test/e2e/testdata/.snapshots/TestSetup/memory.json index bc7b3f8f6e..f7b424cc3b 100644 --- a/test/e2e/testdata/.snapshots/TestSetup/memory.json +++ b/test/e2e/testdata/.snapshots/TestSetup/memory.json @@ -1 +1 @@ -{"TestSetup/clusterName":"cluster-98","TestSetup/dbUserUsername":"cluster-63","TestSetup/randIPSetupForce":"xQ=="} \ No newline at end of file +{"TestSetup/clusterName":"cluster-61","TestSetup/dbUserUsername":"cluster-370","TestSetup/randIPSetupForce":"ew=="} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_ipinfo_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_ipinfo_1.snaphost index 1ea93ce21d..be50abe7f5 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_ipinfo_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_ipinfo_1.snaphost @@ -1,9 +1,9 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:30 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="qw4km75QMq5DNySkCC3FT7RFSY7xeZ5H", algorithm=MD5, qop="auth", stale=false +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="AprES0SRgUyP2JyQnHnWwne6AGSVcTq9", algorithm=MD5, qop="auth", stale=false X-Xgen-Up-Proto: HTTP/2 { diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost new file mode 100644 index 0000000000..daeaad33fc --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 200 OK +Content-Length: 3 +Content-Type: text/plain +Date: Thu, 24 Jul 2025 15:04:45 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +8.0 \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index ab1201913a..234a33981e 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Private_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,10 +1,10 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:30 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="fRtoM2QfhY+lOg8KSjiSAv6MR07z7MrB", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="pzAvC6DuxVRCB+WdG9FT77wwups235Hq", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 { "error" : 401, diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_1.snaphost index 325355414c..c1e297ac43 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_1.snaphost @@ -1,9 +1,9 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:30 GMT +Date: Thu, 24 Jul 2025 15:04:46 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="GULpD7qJCqbjFQ4O+2MtBpF9SXNhLewh", algorithm=MD5, qop="auth", stale=false +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="vDWJvTDQC1ogRqw2wCruuYUpvsVDOT8k", algorithm=MD5, qop="auth", stale=false X-Xgen-Up-Proto: HTTP/2 { diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_2.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_2.snaphost index 2fc61c7e32..6c750bbcb8 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_ipinfo_2.snaphost @@ -1,7 +1,7 @@ HTTP/2.0 200 OK Content-Length: 39 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:30 GMT +Date: Thu, 24 Jul 2025 15:04:46 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; @@ -9,8 +9,8 @@ X-Content-Type-Options: nosniff X-Frame-Options: DENY X-Java-Method: ApiPrivateIpInfoResource::getIpInfo X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 -{"currentIpv4Address":"52.173.219.145"} \ No newline at end of file +{"currentIpv4Address":"52.159.225.199"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost new file mode 100644 index 0000000000..4cb40d90d3 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 200 OK +Content-Length: 3 +Content-Type: text/plain +Date: Thu, 24 Jul 2025 15:04:46 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +8.0 \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_1.snaphost index c6592d67bd..0eb987594d 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_1.snaphost @@ -1,10 +1,10 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:31 GMT +Date: Thu, 24 Jul 2025 15:04:46 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="4Y72GTCv5MNfHNL6c/XPdmPVrIN0eRgx", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 4 +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="zinN60CyOQSPI2kGv6C9TFMgO7rVJElX", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 5 { "error" : 401, diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_2.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_2.snaphost index c6056325f3..564f641384 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Project_ID/POST_api_atlas_v2_groups_111111111111111111111111_databaseUsers_2.snaphost @@ -1,12 +1,12 @@ HTTP/2.0 404 Not Found Content-Length: 167 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:31 GMT +Date: Thu, 24 Jul 2025 15:04:46 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 28 +X-Envoy-Upstream-Service-Time: 19 X-Frame-Options: DENY X-Java-Method: ApiAtlasV2DatabaseUsersResource::addUser X-Java-Version: 17.0.15+6 diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_ipinfo_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_ipinfo_1.snaphost index 57cbe7a295..87e2a601aa 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_ipinfo_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_ipinfo_1.snaphost @@ -1,9 +1,9 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:29 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="cNBfT1IKGqeXTQsUnBeQ01blRdSkvVqy", algorithm=MD5, qop="auth", stale=false +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="Yfmrjx/XP5ythyzDsVKDCoRa2LqMz+fU", algorithm=MD5, qop="auth", stale=false X-Xgen-Up-Proto: HTTP/2 { diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost new file mode 100644 index 0000000000..c6a54f2b4a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -0,0 +1,15 @@ +HTTP/2.0 200 OK +Content-Length: 3 +Content-Type: text/plain +Date: Thu, 24 Jul 2025 15:04:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +8.0 \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost index b1291638b2..a11d364a01 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/Invalid_Public_Key/POST_api_atlas_v2_groups_b0123456789abcdef012345b_databaseUsers_1.snaphost @@ -1,10 +1,10 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:29 GMT +Date: Thu, 24 Jul 2025 15:04:45 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="cZY7h2MaF7ey1Ohxvh02dg3RxVDHk6BM", algorithm=MD5, qop="auth", stale=false -X-Envoy-Upstream-Service-Time: 5 +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="la79QSvcxo+PP8V+rNlQia7tIqSmezav", algorithm=MD5, qop="auth", stale=false +X-Envoy-Upstream-Service-Time: 6 { "error" : 401, diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_1.snaphost index 7b84c5192b..a8d166565c 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_1.snaphost @@ -1,9 +1,9 @@ HTTP/2.0 401 Unauthorized Content-Length: 106 Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:27 GMT +Date: Thu, 24 Jul 2025 15:04:43 GMT Server: mdbws -Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="H4lWKb+tA/DQSxwEv+NlwoUIttKv6HjM", algorithm=MD5, qop="auth", stale=false +Www-Authenticate: Digest realm="MMS Public API", domain="", nonce="SjfyUof53E5kTPDSITvjMG41c/DQsi7t", algorithm=MD5, qop="auth", stale=false X-Envoy-Upstream-Service-Time: 5 { diff --git a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_2.snaphost b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_2.snaphost index 5082ddcf7d..30bd574d81 100644 --- a/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_2.snaphost +++ b/test/e2e/testdata/.snapshots/TestSetupFailureFlow/POST_api_atlas_v2_groups_2.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1067 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:27 GMT +Date: Thu, 24 Jul 2025 15:04:43 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1909 +X-Envoy-Upstream-Service-Time: 1406 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:29Z","id":"687f1d7f44f1ab3f8423133f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d7f44f1ab3f8423133f/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-e2e-361","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:44Z","id":"68824b8bb448981053345a2e","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b8bb448981053345a2e/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"setup-e2e-511","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_1.snaphost deleted file mode 100644 index ef8b43c342..0000000000 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1907 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:57 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 593 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-22T05:11:57Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d9ba799aa2ae9e80955","id":"687f1d9da799aa2ae9e809dc","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/clusters/cluster-41","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/clusters/cluster-41/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/clusters/cluster-41/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-41","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d9da799aa2ae9e809c5","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d9da799aa2ae9e809d2","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_1.snaphost new file mode 100644 index 0000000000..3ab819e297 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/Create_sharded_cluster/POST_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1911 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:11 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 663 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"SHARDED","configServerManagementMode":"ATLAS_MANAGED","configServerType":"EMBEDDED","connectionStrings":{"awsPrivateLinkSrv":{},"privateEndpoint":[]},"createDate":"2025-07-24T15:05:11Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824ba442be0f23307f380f","id":"68824ba742be0f23307f396d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/clusters/cluster-273","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/clusters/cluster-273/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/clusters/cluster-273/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-273","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824ba742be0f23307f3951","numShards":2,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824ba742be0f23307f395d","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_cluster-41_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_cluster-41_1.snaphost deleted file mode 100644 index 5708c6ae29..0000000000 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_cluster-41_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 297 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_cluster-273_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_cluster-273_1.snaphost new file mode 100644 index 0000000000..1878cb6d5a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/Delete_sharded_cluster/DELETE_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_cluster-273_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:12 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 365 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_provider_regions_1.snaphost deleted file mode 100644 index e614b8bbb8..0000000000 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_687f1d9ba799aa2ae9e80955_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..b283ade3fb --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_atlas_v2_groups_68824ba442be0f23307f380f_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 71c25e9f16..7ea687c414 100644 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:56 GMT +Date: Thu, 24 Jul 2025 15:05:11 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestShardedCluster/POST_api_atlas_v2_groups_1.snaphost index b7a80da221..099737a99f 100644 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created Content-Length: 1077 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:55 GMT +Date: Thu, 24 Jul 2025 15:05:08 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1399 +X-Envoy-Upstream-Service-Time: 1824 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:56Z","id":"687f1d9ba799aa2ae9e80955","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d9ba799aa2ae9e80955/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"shardedClusters-e2e-366","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:10Z","id":"68824ba442be0f23307f380f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824ba442be0f23307f380f/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"shardedClusters-e2e-787","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestShardedCluster/memory.json b/test/e2e/testdata/.snapshots/TestShardedCluster/memory.json index 5787188377..f04ba7dc21 100644 --- a/test/e2e/testdata/.snapshots/TestShardedCluster/memory.json +++ b/test/e2e/testdata/.snapshots/TestShardedCluster/memory.json @@ -1 +1 @@ -{"TestShardedCluster/shardedClusterName":"cluster-41"} \ No newline at end of file +{"TestShardedCluster/shardedClusterName":"cluster-273"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost deleted file mode 100644 index 90a58670b6..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1361 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 124 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost deleted file mode 100644 index 1d06950cb4..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1411 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:14 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 119 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80175","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost deleted file mode 100644 index 1a2dc05733..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1713 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:18 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 104 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80175","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_provider_regions_1.snaphost deleted file mode 100644 index 3ee2fcf8b5..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 367 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 149 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/provider/regions?includeCount=true&providers=AWS&tier=M0&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"}],"name":"M0"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost new file mode 100644 index 0000000000..bfc8b71e7c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1361 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:55 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 104 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:54Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost new file mode 100644 index 0000000000..75afa6d146 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1411 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:55 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 93 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:54Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3ea4","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost new file mode 100644 index 0000000000..465ac052dd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1407 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:54Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3ea4","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..513dd6221e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 367 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:53 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/provider/regions?includeCount=true&providers=AWS&tier=M0&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"}],"name":"M0"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index f5cd937d05..9b5dc49fc8 100644 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:12 GMT +Date: Thu, 24 Jul 2025 15:05:53 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_1.snaphost index 259ed15801..371ae455e8 100644 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1077 +Content-Length: 1076 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:10 GMT +Date: Thu, 24 Jul 2025 15:05:52 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2714 +X-Envoy-Upstream-Service-Time: 1261 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:12Z","id":"687f1d6ea799aa2ae9e8009f","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersUpgrade-e2e-827","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:53Z","id":"68824bd0b448981053346275","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"clustersUpgrade-e2e-30","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_1.snaphost deleted file mode 100644 index 450d2ff847..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1351 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:13 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 833 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_68824bd0b448981053346275_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_68824bd0b448981053346275_clusters_1.snaphost new file mode 100644 index 0000000000..d8c7840ce1 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/POST_api_atlas_v2_groups_68824bd0b448981053346275_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1351 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:54 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 697 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:54Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost deleted file mode 100644 index 3ce86cf142..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2611 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -X-Xgen-Up-Proto: HTTP/2 - -{"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGBEnabled":false},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","mongoURI":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017","mongoURIUpdated":"2025-07-22T05:11:18Z","mongoURIWithOptions":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","name":"cluster-404","numShards":1,"paused":false,"pitEnabled":false,"providerBackupEnabled":false,"providerSettings":{"providerName":"TENANT","autoScaling":{"compute":{"maxInstanceSize":null,"minInstanceSize":null}},"backingProviderName":"AWS","effectiveInstanceSizeName":"M0","instanceSizeName":"M0","regionName":"US_EAST_1"},"replicationFactor":3,"replicationSpec":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionsConfig":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","srvAddress":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost new file mode 100644 index 0000000000..00e11e2cac --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1806 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +{"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGBEnabled":false},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:54Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","mongoURIUpdated":"2025-07-24T15:05:54Z","name":"cluster-297","numShards":1,"paused":false,"pitEnabled":false,"providerBackupEnabled":false,"providerSettings":{"providerName":"TENANT","autoScaling":{"compute":{"maxInstanceSize":null,"minInstanceSize":null}},"backingProviderName":"AWS","effectiveInstanceSizeName":"M0","instanceSizeName":"M0","regionName":"US_EAST_1"},"replicationFactor":3,"replicationSpec":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionsConfig":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost deleted file mode 100644 index 1dfe3f85e8..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1694 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost deleted file mode 100644 index 235201e292..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1744 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:21 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 113 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80175","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost deleted file mode 100644 index ddc7d0e350..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1717 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:46 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80175","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"687f1d71a799aa2ae9e80174","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_4.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_4.snaphost deleted file mode 100644 index 59aac0b820..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1886 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:12:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 121 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:19Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d77a799aa2ae9e80349","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d77a799aa2ae9e80348","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d77a799aa2ae9e80347","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_5.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_5.snaphost deleted file mode 100644 index 2799165d37..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2192 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:09 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:19Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d77a799aa2ae9e80349","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d77a799aa2ae9e80348","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d77a799aa2ae9e80347","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_6.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_6.snaphost deleted file mode 100644 index b8a25b5718..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_6.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2188 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:19Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d77a799aa2ae9e80349","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d77a799aa2ae9e80348","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d77a799aa2ae9e80347","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_7.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_7.snaphost deleted file mode 100644 index e4befb5475..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_687f1d6ea799aa2ae9e8009f_clusters_cluster-404_7.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2102 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:51 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 101 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:19Z","diskSizeGB":40.0,"encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d77a799aa2ae9e80349","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-404","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d77a799aa2ae9e80347","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost new file mode 100644 index 0000000000..1e9a157d9b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1694 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:01 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 96 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:05:54Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0"},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost new file mode 100644 index 0000000000..bc827ef2dd --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1744 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 102 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:05:54Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3ea4","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost new file mode 100644 index 0000000000..cdc99c8dad --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1717 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:05:54Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3ea4","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_4.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_4.snaphost new file mode 100644 index 0000000000..f60402262d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1476 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:56 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 98 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:05:54Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3ea4","regionConfigs":[{"electableSpecs":{"effectiveInstanceSize":"M0","instanceSize":"M0","diskSizeGB":0.5},"backingProviderName":"AWS","priority":7,"providerName":"TENANT","regionName":"US_EAST_1"}],"zoneId":"68824bd242be0f23307f3ea3","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_5.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_5.snaphost new file mode 100644 index 0000000000..8a3d88dc1f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1886 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:07:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 108 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:00Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd842be0f23307f3ed8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd842be0f23307f3ed7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd842be0f23307f3ed6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_6.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_6.snaphost new file mode 100644 index 0000000000..94ae5a5e70 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_6.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2192 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 98 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:06:00Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd842be0f23307f3ed8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd842be0f23307f3ed7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd842be0f23307f3ed6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_7.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_7.snaphost new file mode 100644 index 0000000000..50145f6b5a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_7.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2188 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:44 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 117 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:06:00Z","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd842be0f23307f3ed8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd842be0f23307f3ed7","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":40.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd842be0f23307f3ed6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_8.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_8.snaphost new file mode 100644 index 0000000000..1cb89d0d0c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/GET_api_atlas_v2_groups_68824bd0b448981053346275_clusters_cluster-297_8.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 2102 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:44 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:06:00Z","diskSizeGB":40.0,"encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd842be0f23307f3ed8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-297","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd842be0f23307f3ed6","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_tenantUpgrade_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_tenantUpgrade_1.snaphost deleted file mode 100644 index 84a11eb15b..0000000000 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_687f1d6ea799aa2ae9e8009f_clusters_tenantUpgrade_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2642 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:11:19 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::upgradeTenantCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none -X-Xgen-Up-Proto: HTTP/2 - -{"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGBEnabled":false},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","standardSrv":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d6ea799aa2ae9e8009f","id":"687f1d72a799aa2ae9e80185","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404","rel":"self"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/687f1d6ea799aa2ae9e8009f/clusters/cluster-404/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","mongoURI":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017","mongoURIUpdated":"2025-07-22T05:11:18Z","mongoURIWithOptions":"mongodb://ac-jjzibit-shard-00-00.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-01.7fi69ed.mongodb-dev.net:27017,ac-jjzibit-shard-00-02.7fi69ed.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-qk9dcr-shard-0","name":"cluster-404","numShards":1,"paused":false,"pitEnabled":false,"providerBackupEnabled":false,"providerSettings":{"providerName":"TENANT","autoScaling":{"compute":{"maxInstanceSize":null,"minInstanceSize":null}},"backingProviderName":"AWS","effectiveInstanceSizeName":"M0","instanceSizeName":"M0","regionName":"US_EAST_1"},"replicationFactor":3,"replicationSpec":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80167","numShards":1,"regionsConfig":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","srvAddress":"mongodb+srv://cluster-404.7fi69ed.mongodb-dev.net","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_tenantUpgrade_1.snaphost b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_tenantUpgrade_1.snaphost new file mode 100644 index 0000000000..aed5fd212f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/Upgrade_to_dedicated_tier/POST_api_atlas_v1.0_groups_68824bd0b448981053346275_clusters_tenantUpgrade_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2642 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:05:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Frame-Options: DENY +X-Java-Method: ApiAtlasLegacyClusterDescriptionResource::upgradeTenantCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none +X-Xgen-Up-Proto: HTTP/2 + +{"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGBEnabled":false},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","standardSrv":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net"},"createDate":"2025-07-24T15:05:54Z","diskSizeGB":0.5,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824bd0b448981053346275","id":"68824bd242be0f23307f3ea8","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297","rel":"self"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v1.0/groups/68824bd0b448981053346275/clusters/cluster-297/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","mongoURI":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017","mongoURIUpdated":"2025-07-24T15:05:59Z","mongoURIWithOptions":"mongodb://ac-hcujqe0-shard-00-00.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-01.wz58zma.mongodb-dev.net:27017,ac-hcujqe0-shard-00-02.wz58zma.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-z8mejd-shard-0","name":"cluster-297","numShards":1,"paused":false,"pitEnabled":false,"providerBackupEnabled":false,"providerSettings":{"providerName":"TENANT","autoScaling":{"compute":{"maxInstanceSize":null,"minInstanceSize":null}},"backingProviderName":"AWS","effectiveInstanceSizeName":"M0","instanceSizeName":"M0","regionName":"US_EAST_1"},"replicationFactor":3,"replicationSpec":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"replicationSpecs":[{"id":"68824bd242be0f23307f3e9c","numShards":1,"regionsConfig":{"US_EAST_1":{"analyticsNodes":0,"electableNodes":3,"priority":7,"readOnlyNodes":0}},"zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","srvAddress":"mongodb+srv://cluster-297.wz58zma.mongodb-dev.net","stateName":"UPDATING","tags":[{"key":"env","value":"e2e"}],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/memory.json b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/memory.json index d2ad147bf2..f8f3586d5f 100644 --- a/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/memory.json +++ b/test/e2e/testdata/.snapshots/TestSharedClusterUpgrade/memory.json @@ -1 +1 @@ -{"TestSharedClusterUpgrade/clusterGenerateClusterName":"cluster-404"} \ No newline at end of file +{"TestSharedClusterUpgrade/clusterGenerateClusterName":"cluster-297"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost index e14eeba96f..9da5f4e0b9 100644 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Create_cluster/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_1.snaphost @@ -1,18 +1,18 @@ HTTP/2.0 201 Created -Content-Length: 1790 +Content-Length: 1794 Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:13 GMT +Date: Thu, 24 Jul 2025 15:06:01 GMT Deprecation: Mon, 5 Aug 2024 00:00:00 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Sunset: Sun, 1 Mar 2026 00:00:00 GMT X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 1112 +X-Envoy-Upstream-Service-Time: 823 X-Frame-Options: DENY X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80178","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:01Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824bd9b4489810533463d8","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost deleted file mode 100644 index 0359152ff8..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 577 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 216 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:04Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost new file mode 100644 index 0000000000..20a41f80c0 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Create_snapshot/POST_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 580 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 179 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::onDemandSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:15:19Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost deleted file mode 100644 index 454f441d8e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:49 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 344 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost new file mode 100644 index 0000000000..8f529d8640 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 327 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::deleteCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost deleted file mode 100644 index 0f7a491050..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost +++ /dev/null @@ -1,14 +0,0 @@ -HTTP/2.0 204 No Content -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:49 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 178 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost new file mode 100644 index 0000000000..7b694aed15 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Delete/DELETE_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost @@ -0,0 +1,14 @@ +HTTP/2.0 204 No Content +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 151 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::deleteSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost deleted file mode 100644 index 525c6d56a6..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 671 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:48 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 112 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:19:30Z","description":"test-snapshot","expiresAt":"2025-07-23T05:20:45Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"completed","storageSizeBytes":1551958016,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost new file mode 100644 index 0000000000..fb628bf64d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 674 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 84 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-24T15:17:07Z","description":"test-snapshot","expiresAt":"2025-07-25T15:18:21Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"completed","storageSizeBytes":1543356416,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost deleted file mode 100644 index 3155c974f7..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 185 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:20:48 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 85 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster cluster-36 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-36"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost new file mode 100644 index 0000000000..103967d3ea --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Describe/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 187 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:18:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 95 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster cluster-944 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-944"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost deleted file mode 100644 index 4387c6fd95..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1800 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"687f1d71a799aa2ae9e80178","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_2.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_2.snaphost deleted file mode 100644 index 271c7fe16d..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1886 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:15 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 120 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801a8","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_3.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_3.snaphost deleted file mode 100644 index f8c70e8066..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2179 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:03 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 122 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-36-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-x0ru0s-shard-0","standardSrv":"mongodb+srv://cluster-36.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801a8","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_4.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_4.snaphost deleted file mode 100644 index 38ab1e356c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2184 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:50 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 135 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-36-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-36-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-x0ru0s-shard-0","standardSrv":"mongodb+srv://cluster-36.g1nxq.mongodb-dev.net"},"createDate":"2025-07-22T05:11:14Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"687f1d72a799aa2ae9e801ec","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-36","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d72a799aa2ae9e801a8","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d72a799aa2ae9e801a7","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_5.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_5.snaphost deleted file mode 100644 index beb2e7b156..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 404 Not Found -Content-Length: 202 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:23:42 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"No cluster named cluster-36 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-36","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost new file mode 100644 index 0000000000..633cb60378 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1804 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:02 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:01Z","diskSizeGB":10.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"replicationSpecs":[{"id":"68824bd9b4489810533463d8","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_2.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_2.snaphost new file mode 100644 index 0000000000..3441861c91 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1890 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:06:02 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:06:01Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd9b448981053346402","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_3.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_3.snaphost new file mode 100644 index 0000000000..9c9434e304 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2187 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":true,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-944-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-944-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-944-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-vkjmli-shard-0","standardSrv":"mongodb+srv://cluster-944.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:06:01Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd9b448981053346402","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_4.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_4.snaphost new file mode 100644 index 0000000000..7eb0aa9272 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2192 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:26 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 138 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-944-shard-00-00.g1nxq.mongodb-dev.net:27017,cluster-944-shard-00-01.g1nxq.mongodb-dev.net:27017,cluster-944-shard-00-02.g1nxq.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-vkjmli-shard-0","standardSrv":"mongodb+srv://cluster-944.g1nxq.mongodb-dev.net"},"createDate":"2025-07-24T15:06:01Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"b0123456789abcdef012345b","id":"68824bd9b44898105334643d","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-944","paused":false,"pitEnabled":true,"redactClientLogData":false,"replicationSpecs":[{"id":"68824bd9b448981053346402","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":10.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824bd9b448981053346401","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"DELETING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_5.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_5.snaphost new file mode 100644 index 0000000000..e9b396c0c9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 404 Not Found +Content-Length: 204 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:20:35 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 109 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"No cluster named cluster-944 exists in group b0123456789abcdef012345b.","error":404,"errorCode":"CLUSTER_NOT_FOUND","parameters":["cluster-944","b0123456789abcdef012345b"],"reason":"Not Found"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 0a6d7a2eb5..54a7b3ee66 100644 --- a/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestSnapshots/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:13 GMT +Date: Thu, 24 Jul 2025 15:05:58 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost deleted file mode 100644 index 5f1b318d5a..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 883 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 124 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshots -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:19:30Z","description":"test-snapshot","expiresAt":"2025-07-23T05:20:45Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"completed","storageSizeBytes":1551958016,"type":"replicaSet"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost new file mode 100644 index 0000000000..3965bdf971 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 887 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 123 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshots +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots?includeCount=true&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-24T15:17:07Z","description":"test-snapshot","expiresAt":"2025-07-25T15:18:21Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"completed","storageSizeBytes":1543356416,"type":"replicaSet"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_1.snaphost deleted file mode 100644 index 6260dd834e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 185 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:20:47 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshots -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster cluster-36 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-36"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_1.snaphost new file mode 100644 index 0000000000..36b492c7ef --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/List/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 187 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:18:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 79 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshots +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster cluster-944 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-944"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost deleted file mode 100644 index c90476360c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 577 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 96 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:04Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_2.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_2.snaphost deleted file mode 100644 index 51937ebc5c..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 581 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:13 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 77 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:04Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_3.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_3.snaphost deleted file mode 100644 index 5817604176..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 606 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:18:26 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 105 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:04Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_4.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_4.snaphost deleted file mode 100644 index c6998ec91b..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_4.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 628 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:34 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 86 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-23T05:18:04Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_5.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_5.snaphost deleted file mode 100644 index 15678adba8..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_5.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 671 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:46 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 71 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-22T05:19:30Z","description":"test-snapshot","expiresAt":"2025-07-23T05:20:45Z","frequencyType":"ondemand","id":"687f1f0c44f1ab3f842321db","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36/backup/snapshots/687f1f0c44f1ab3f842321db","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-36","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-36","snapshotType":"onDemand","status":"completed","storageSizeBytes":1551958016,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost new file mode 100644 index 0000000000..e51141785f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 580 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 73 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:15:19Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"queued","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_2.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_2.snaphost new file mode 100644 index 0000000000..af1231f95e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 584 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 90 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:15:19Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_3.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_3.snaphost new file mode 100644 index 0000000000..fa22d2b65c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 609 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:15:45 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 69 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:15:19Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_4.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_4.snaphost new file mode 100644 index 0000000000..2d1f30045b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_4.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 631 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:17:10 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"description":"test-snapshot","expiresAt":"2025-07-25T15:15:19Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"inProgress","storageSizeBytes":0,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_5.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_5.snaphost new file mode 100644 index 0000000000..f7628e6b55 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_clusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_5.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 674 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:18:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 87 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasDiskBackupSnapshotsResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"cloudProvider":"AWS","copyRegions":[],"createdAt":"2025-07-24T15:17:07Z","description":"test-snapshot","expiresAt":"2025-07-25T15:18:21Z","frequencyType":"ondemand","id":"68824e0742be0f23307f4e7b","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944/backup/snapshots/68824e0742be0f23307f4e7b","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/b0123456789abcdef012345b/clusters/cluster-944","rel":"https://cloud.mongodb.com/cluster"}],"mongodVersion":"8.0.12","policyItems":[],"replicaSetName":"cluster-944","snapshotType":"onDemand","status":"completed","storageSizeBytes":1543356416,"type":"replicaSet"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost deleted file mode 100644 index ef1b2ebe8e..0000000000 --- a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-36_backup_snapshots_687f1f0c44f1ab3f842321db_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 400 Bad Request -Content-Length: 185 -Content-Type: application/json -Date: Tue, 22 Jul 2025 05:18:04 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 87 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"detail":"Cannot use non-flex cluster cluster-36 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-36"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost new file mode 100644 index 0000000000..cdc24b4f69 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestSnapshots/Watch_creation/GET_api_atlas_v2_groups_b0123456789abcdef012345b_flexClusters_cluster-944_backup_snapshots_68824e0742be0f23307f4e7b_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 400 Bad Request +Content-Length: 187 +Content-Type: application/json +Date: Thu, 24 Jul 2025 15:15:19 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 90 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasFlexBackupResource::getSnapshot +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"detail":"Cannot use non-flex cluster cluster-944 in the flex API.","error":400,"errorCode":"CANNOT_USE_NON_FLEX_CLUSTER_IN_FLEX_API","parameters":["cluster-944"],"reason":"Bad Request"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestSnapshots/memory.json b/test/e2e/testdata/.snapshots/TestSnapshots/memory.json index 413e438206..775360e726 100644 --- a/test/e2e/testdata/.snapshots/TestSnapshots/memory.json +++ b/test/e2e/testdata/.snapshots/TestSnapshots/memory.json @@ -1 +1 @@ -{"TestSnapshots/clusterName":"cluster-36"} \ No newline at end of file +{"TestSnapshots/clusterName":"cluster-944"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost deleted file mode 100644 index 54f804762a..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 283 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 220 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::createConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-429","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost new file mode 100644 index 0000000000..0ee165931b --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_connection/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 283 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 232 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::createConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-684","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost deleted file mode 100644 index 9e90928f28..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 290 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:48 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 243 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::createTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d9444f1ab3f84231761","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"687f1d91a799aa2ae9e8077d","hostnames":["atlas-stream-687f1d9444f1ab3f84231761-qsfs4y.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-916","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost new file mode 100644 index 0000000000..763cc83848 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 290 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 222 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::createTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824baeb448981053345f16","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"68824babb448981053345e9a","hostnames":["atlas-stream-68824baeb448981053345f16-ql85po.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-990","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost deleted file mode 100644 index 93c3de0c26..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 278 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 103 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::createPrivateLinkConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d99a799aa2ae9e80944","dnsDomain":"test-namespace.servicebus.windows.net","provider":"Azure","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost new file mode 100644 index 0000000000..1ecbb51515 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Creating_a_streams_privateLink_endpoint/POST_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 278 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 116 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::createPrivateLinkConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824bb1b44898105334600a","dnsDomain":"test-namespace.servicebus.windows.net","provider":"Azure","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost deleted file mode 100644 index 8251c8fd8a..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:58 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 169 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::deleteConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost new file mode 100644 index 0000000000..f4209955b4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_connection/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 183 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::deleteConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost deleted file mode 100644 index e949577171..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 162 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::deleteTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost new file mode 100644 index 0000000000..65591fe511 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_instance/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:25 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 160 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::deleteTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost deleted file mode 100644 index e849c20394..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:55 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 69 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::deletePrivateLinkConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost new file mode 100644 index 0000000000..53d5aac6cf --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Deleting_a_streams_privateLink_endpoint/DELETE_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 72 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::deletePrivateLinkConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost deleted file mode 100644 index 0fb0d7a665..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 283 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:56 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 111 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-429","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost new file mode 100644 index 0000000000..ffda60e9b4 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_connection/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 283 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 103 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-684","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost deleted file mode 100644 index dc6fc56836..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 290 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 82 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d9444f1ab3f84231761","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"687f1d91a799aa2ae9e8077d","hostnames":["atlas-stream-687f1d9444f1ab3f84231761-qsfs4y.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-916","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost new file mode 100644 index 0000000000..97b5e2b5ba --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 290 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 64 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824baeb448981053345f16","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"68824babb448981053345e9a","hostnames":["atlas-stream-68824baeb448981053345f16-ql85po.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-990","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost deleted file mode 100644 index 0e570c53f0..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_687f1d99a799aa2ae9e80944_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 312 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:53 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 68 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getPrivateLinkConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d99a799aa2ae9e80944","dnsDomain":"test-namespace.servicebus.windows.net","provider":"AZURE","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace","state":"IDLE","vendor":"GENERIC"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost new file mode 100644 index 0000000000..fbd6901e82 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Describing_a_streams_privateLink_endpoint/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_68824bb1b44898105334600a_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 312 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 66 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getPrivateLinkConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824bb1b44898105334600a","dnsDomain":"test-namespace.servicebus.windows.net","provider":"AZURE","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace","state":"IDLE","vendor":"GENERIC"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_auditLogs_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_auditLogs_1.snaphost deleted file mode 100644 index d89bc957a5..0000000000 Binary files a/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_auditLogs_1.snaphost and /dev/null differ diff --git a/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_auditLogs_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_auditLogs_1.snaphost new file mode 100644 index 0000000000..ce2f5b7bbf Binary files /dev/null and b/test/e2e/testdata/.snapshots/TestStreams/Downloading_streams_instance_logs_instance/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_auditLogs_1.snaphost differ diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost deleted file mode 100644 index bbe7177721..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 165 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:48 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 94 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getGroupTenants -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/streams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[],"totalCount":0} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost new file mode 100644 index 0000000000..b52a32e39c --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 165 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:18 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 78 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getGroupTenants +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/streams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[],"totalCount":0} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost deleted file mode 100644 index 5e0072a897..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 455 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:51 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 88 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getGroupTenants -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/streams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"687f1d9444f1ab3f84231761","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"687f1d91a799aa2ae9e8077d","hostnames":["atlas-stream-687f1d9444f1ab3f84231761-qsfs4y.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-916","streamConfig":{"tier":"SP30"}}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost new file mode 100644 index 0000000000..41648c20c9 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_in_the_e2e_project_after_creating/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 455 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:20 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 76 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getGroupTenants +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/streams?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"68824baeb448981053345f16","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"68824babb448981053345e9a","hostnames":["atlas-stream-68824baeb448981053345f16-ql85po.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-990","streamConfig":{"tier":"SP30"}}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost deleted file mode 100644 index 3144b01ff9..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_privateLinkConnections_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 500 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:54 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 63 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getPrivateLinkConnections -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/streams/privateLinkConnections?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"687f1d99a799aa2ae9e80944","dnsDomain":"test-namespace.servicebus.windows.net","provider":"AZURE","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace","state":"IDLE","vendor":"GENERIC"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost new file mode 100644 index 0000000000..a6e026731e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/List_all_streams_privateLink_endpoints/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_privateLinkConnections_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 500 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:22 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 70 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getPrivateLinkConnections +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/streams/privateLinkConnections?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"_id":"68824bb1b44898105334600a","dnsDomain":"test-namespace.servicebus.windows.net","provider":"AZURE","region":"US_EAST_2","serviceEndpointId":"/subscriptions/fd01adff-b37e-4693-8497-83ecf183a145/resourceGroups/test-rg/providers/Microsoft.EventHub/namespaces/test-namespace","state":"IDLE","vendor":"GENERIC"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost deleted file mode 100644 index 72abf85b1d..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 473 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 143 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::getConnections -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/streams/instance-916/connections?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-429","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost new file mode 100644 index 0000000000..8a6cb3f796 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Listing_streams_connections/GET_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 473 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:23 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 128 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::getConnections +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/streams/instance-990/connections?pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"authentication":{"mechanism":"SCRAM-256","username":"admin"},"bootstrapServers":"example.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-684","networking":{"access":{"type":"PUBLIC"}},"security":{"protocol":"PLAINTEXT"},"type":"Kafka"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/POST_api_atlas_v2_groups_1.snaphost index 00081d11ef..84d85036e3 100644 --- a/test/e2e/testdata/.snapshots/TestStreams/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestStreams/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1073 +Content-Length: 1074 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:45 GMT +Date: Thu, 24 Jul 2025 15:05:15 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2373 +X-Envoy-Upstream-Service-Time: 2125 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:47Z","id":"687f1d91a799aa2ae9e8077d","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d91a799aa2ae9e8077d/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"atlasStreams-e2e-42","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:05:17Z","id":"68824babb448981053345e9a","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824babb448981053345e9a/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"atlasStreams-e2e-784","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost deleted file mode 100644 index f24aa58dab..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_connections_connection-429_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1603 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:57 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 195 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::updateConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"authentication":{"mechanism":"SCRAM-512","username":"admin"},"bootstrapServers":"example2.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-429","networking":{"access":{"type":"PUBLIC"}},"security":{"brokerPublicCertificate":"-----BEGIN CERTIFICATE-----\nMIIDgTCCAmmgAwIBAgIUAyru7GyouEarI3PGKb9jChw4fFEwDQYJKoZIhvcNAQEL\nBQAwUDELMAkGA1UEBhMCQVUxDDAKBgNVBAgMA05TVzEPMA0GA1UEBwwGU3lkbmV5\nMRAwDgYDVQQKDAdNb25nb0RCMRAwDgYDVQQLDAdTdHJlYW1zMB4XDTIzMDgwOTA2\nMzk0OFoXDTI0MDgwODA2Mzk0OFowUDELMAkGA1UEBhMCQVUxDDAKBgNVBAgMA05T\nVzEPMA0GA1UEBwwGU3lkbmV5MRAwDgYDVQQKDAdNb25nb0RCMRAwDgYDVQQLDAdT\ndHJlYW1zMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxlzSa+7mm9R4\nqtYMlF1i2RjJKUWc1NEWg8gFKQ5LNFH4qE6WCjR7hVL/bfY+2/XNDWWqyd5v1Ags\nQHVG7rH+H5kOFDdzd+STRUN/CiNUusXMlcbj5BFrcfOP/T+YUtuyJ5mVmBm+n4dT\nreAZfW9lE5UpRb3oy4igktEOdcZthO16vuuTtJlqM9hPR7niHjldeS5+C8Aj3b0f\nH5/iy959MtPq7ti+fKDf7YnT7MJymmVe6q3xR891CzfV48DlEPNTDd5eTJUjJ4B/\nq039t6IpOS9Qr59OgKqeBjKIBXe5b22Bs1sRSG7RkHQu3QTJEO7nrDP7KK4TODvA\nQfPvdtGcVQIDAQABo1MwUTAdBgNVHQ4EFgQUzqL974BmlGOwsJi5K7hD8jPTp6Iw\nHwYDVR0jBBgwFoAUzqL974BmlGOwsJi5K7hD8jPTp6IwDwYDVR0TAQH/BAUwAwEB\n/zANBgkqhkiG9w0BAQsFAAOCAQEAu/yXUVVnOH+gcZfxvYQuDyOgHCc4dso3X3Up\n6PH7FD/XeQhgHJYU4tqo6mEtGP3R28FrilQ6vCBf2KmkIWOAO8H9Ofjd0pRYvrHU\nk0WRgXSarw4vH8o4nsLKVG1ySIJTQdtMTt/31Q+J4nMMz/lm7NIdmHEs94SNnXp5\nLKhAGUA9juWb+Fki+2iMjeGaLdTCBIzZPwLSt3THCY6dW+6qYT7pxcsFzRjmn+xi\nUbaf/oGOw6/3wOJFCh79NXoOvc7LPZ3rIfxGY+gl9BEmPE9h1MW777xeNZiA+cqF\nQRAC/ac7MRzMowXRruX3GahZdMVwwX9rGwvFTf9DLCBLgacM1Q==\n-----END CERTIFICATE-----","protocol":"SSL"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost new file mode 100644 index 0000000000..3551795074 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_connection/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_connections_connection-684_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1603 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:24 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 235 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::updateConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"authentication":{"mechanism":"SCRAM-512","username":"admin"},"bootstrapServers":"example2.com:8080,fraud.example.com:8000","config":{"auto.offset.reset":"earliest"},"name":"connection-684","networking":{"access":{"type":"PUBLIC"}},"security":{"brokerPublicCertificate":"-----BEGIN CERTIFICATE-----\nMIIDgTCCAmmgAwIBAgIUAyru7GyouEarI3PGKb9jChw4fFEwDQYJKoZIhvcNAQEL\nBQAwUDELMAkGA1UEBhMCQVUxDDAKBgNVBAgMA05TVzEPMA0GA1UEBwwGU3lkbmV5\nMRAwDgYDVQQKDAdNb25nb0RCMRAwDgYDVQQLDAdTdHJlYW1zMB4XDTIzMDgwOTA2\nMzk0OFoXDTI0MDgwODA2Mzk0OFowUDELMAkGA1UEBhMCQVUxDDAKBgNVBAgMA05T\nVzEPMA0GA1UEBwwGU3lkbmV5MRAwDgYDVQQKDAdNb25nb0RCMRAwDgYDVQQLDAdT\ndHJlYW1zMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxlzSa+7mm9R4\nqtYMlF1i2RjJKUWc1NEWg8gFKQ5LNFH4qE6WCjR7hVL/bfY+2/XNDWWqyd5v1Ags\nQHVG7rH+H5kOFDdzd+STRUN/CiNUusXMlcbj5BFrcfOP/T+YUtuyJ5mVmBm+n4dT\nreAZfW9lE5UpRb3oy4igktEOdcZthO16vuuTtJlqM9hPR7niHjldeS5+C8Aj3b0f\nH5/iy959MtPq7ti+fKDf7YnT7MJymmVe6q3xR891CzfV48DlEPNTDd5eTJUjJ4B/\nq039t6IpOS9Qr59OgKqeBjKIBXe5b22Bs1sRSG7RkHQu3QTJEO7nrDP7KK4TODvA\nQfPvdtGcVQIDAQABo1MwUTAdBgNVHQ4EFgQUzqL974BmlGOwsJi5K7hD8jPTp6Iw\nHwYDVR0jBBgwFoAUzqL974BmlGOwsJi5K7hD8jPTp6IwDwYDVR0TAQH/BAUwAwEB\n/zANBgkqhkiG9w0BAQsFAAOCAQEAu/yXUVVnOH+gcZfxvYQuDyOgHCc4dso3X3Up\n6PH7FD/XeQhgHJYU4tqo6mEtGP3R28FrilQ6vCBf2KmkIWOAO8H9Ofjd0pRYvrHU\nk0WRgXSarw4vH8o4nsLKVG1ySIJTQdtMTt/31Q+J4nMMz/lm7NIdmHEs94SNnXp5\nLKhAGUA9juWb+Fki+2iMjeGaLdTCBIzZPwLSt3THCY6dW+6qYT7pxcsFzRjmn+xi\nUbaf/oGOw6/3wOJFCh79NXoOvc7LPZ3rIfxGY+gl9BEmPE9h1MW777xeNZiA+cqF\nQRAC/ac7MRzMowXRruX3GahZdMVwwX9rGwvFTf9DLCBLgacM1Q==\n-----END CERTIFICATE-----","protocol":"SSL"},"type":"Kafka"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost deleted file mode 100644 index 3802846eb0..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_687f1d91a799aa2ae9e8077d_streams_instance-916_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 290 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:52 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 160 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::updateTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1d9444f1ab3f84231761","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"687f1d91a799aa2ae9e8077d","hostnames":["atlas-stream-687f1d9444f1ab3f84231761-qsfs4y.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-916","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost new file mode 100644 index 0000000000..dfc033295e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreams/Updating_a_streams_instance/PATCH_api_atlas_v2_groups_68824babb448981053345e9a_streams_instance-990_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 290 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:21 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 191 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::updateTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824baeb448981053345f16","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"68824babb448981053345e9a","hostnames":["atlas-stream-68824baeb448981053345f16-ql85po.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-990","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreams/memory.json b/test/e2e/testdata/.snapshots/TestStreams/memory.json index 870bc85318..9df7d7da51 100644 --- a/test/e2e/testdata/.snapshots/TestStreams/memory.json +++ b/test/e2e/testdata/.snapshots/TestStreams/memory.json @@ -1 +1 @@ -{"TestStreams/connectionName":"connection-429","TestStreams/instanceName":"instance-916"} \ No newline at end of file +{"TestStreams/connectionName":"connection-684","TestStreams/instanceName":"instance-990"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_connections_1.snaphost deleted file mode 100644 index e82ac3ba91..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_connections_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 125 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 176 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::createConnection -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"clusterName":"cluster-467","dbRoleToExecute":{"role":"atlasAdmin","type":"BUILT_IN"},"name":"ClusterConn","type":"Cluster"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_connections_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_connections_1.snaphost new file mode 100644 index 0000000000..b6f65fb774 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Create_a_streams_connection_with_an_atlas_cluster/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_connections_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 125 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:52 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 197 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::createConnection +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"clusterName":"cluster-173","dbRoleToExecute":{"role":"atlasAdmin","type":"BUILT_IN"},"name":"ClusterConn","type":"Cluster"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_1.snaphost deleted file mode 100644 index e75a0e00d5..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 290 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 214 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::createTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"_id":"687f1f7f44f1ab3f8423230b","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"687f1d8444f1ab3f84231469","hostnames":["atlas-stream-687f1f7f44f1ab3f8423230b-1e1mve.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-140","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_1.snaphost new file mode 100644 index 0000000000..17e751528a --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/Creating_a_streams_instance/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 290 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:51 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 233 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::createTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"_id":"68824d73b448981053346e8e","dataProcessRegion":{"cloudProvider":"AWS","region":"VIRGINIA_USA"},"groupId":"68824b9842be0f23307f35ad","hostnames":["atlas-stream-68824d73b448981053346e8e-mqmh6x.virginia-usa.a.query.mongodb-dev.net"],"name":"instance-852","streamConfig":{"tier":"SP30"}} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_1.snaphost deleted file mode 100644 index 0bcc65165b..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_687f1d8444f1ab3f84231469_streams_instance-140_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 202 Accepted -Content-Length: 2 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:20:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 150 -X-Frame-Options: DENY -X-Java-Method: ApiStreamsResource::deleteTenant -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_1.snaphost new file mode 100644 index 0000000000..e2a107017d --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/DELETE_api_atlas_v2_groups_68824b9842be0f23307f35ad_streams_instance-852_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 202 Accepted +Content-Length: 2 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:52 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 205 +X-Frame-Options: DENY +X-Java-Method: ApiStreamsResource::deleteTenant +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_1.snaphost deleted file mode 100644 index efeb604faf..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1806 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:36Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8444f1ab3f84231469","id":"687f1d8844f1ab3f84231508","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-467","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8744f1ab3f842314f4","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8744f1ab3f842314fc","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_2.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_2.snaphost deleted file mode 100644 index 8d41efd829..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_2.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1892 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:36 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 107 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:36Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8444f1ab3f84231469","id":"687f1d8844f1ab3f84231508","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-467","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8744f1ab3f842314fd","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8744f1ab3f842314fc","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_3.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_3.snaphost deleted file mode 100644 index 07eee05c24..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_cluster-467_3.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 2193 -Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:19:59 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 99 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-467-shard-00-00.1e1mve.mongodb-dev.net:27017,cluster-467-shard-00-01.1e1mve.mongodb-dev.net:27017,cluster-467-shard-00-02.1e1mve.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-h6k71q-shard-0","standardSrv":"mongodb+srv://cluster-467.1e1mve.mongodb-dev.net"},"createDate":"2025-07-22T05:11:36Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"687f1d8444f1ab3f84231469","id":"687f1d8844f1ab3f84231508","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-467","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"687f1d8744f1ab3f842314fd","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8744f1ab3f842314fc","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_provider_regions_1.snaphost deleted file mode 100644 index d7e43cc63c..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_provider_regions_1.snaphost +++ /dev/null @@ -1,16 +0,0 @@ -HTTP/2.0 200 OK -Content-Length: 1548 -Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 100 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_1.snaphost new file mode 100644 index 0000000000..1d5633aa9e --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 200 OK +Content-Length: 1806 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 105 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9842be0f23307f35ad","id":"68824b9cb448981053345bf5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-173","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9cb448981053345bbc","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bcf","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_2.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_2.snaphost new file mode 100644 index 0000000000..66576ab6b6 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_2.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1892 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:01 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 107 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9842be0f23307f35ad","id":"68824b9cb448981053345bf5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-173","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9cb448981053345bd0","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bcf","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_3.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_3.snaphost new file mode 100644 index 0000000000..60aeb7911f --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_cluster-173_3.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 2193 +Content-Type: application/vnd.atlas.2024-08-05+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:12:51 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 114 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionResource20240805::getCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{"standard":"mongodb://cluster-173-shard-00-00.mqmh6x.mongodb-dev.net:27017,cluster-173-shard-00-01.mqmh6x.mongodb-dev.net:27017,cluster-173-shard-00-02.mqmh6x.mongodb-dev.net:27017/?ssl=true&authSource=admin&replicaSet=atlas-u1rwpf-shard-0","standardSrv":"mongodb+srv://cluster-173.mqmh6x.mongodb-dev.net"},"createDate":"2025-07-24T15:05:00Z","diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","featureCompatibilityVersion":"8.0","globalClusterSelfManagedSharding":false,"groupId":"68824b9842be0f23307f35ad","id":"68824b9cb448981053345bf5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-173","paused":false,"pitEnabled":false,"redactClientLogData":false,"replicationSpecs":[{"id":"68824b9cb448981053345bd0","regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"diskSizeGB":30.0,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bcf","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"IDLE","tags":[],"terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_provider_regions_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_provider_regions_1.snaphost new file mode 100644 index 0000000000..7bb921ae39 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_provider_regions_1.snaphost @@ -0,0 +1,16 @@ +HTTP/2.0 200 OK +Content-Length: 1548 +Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:04:59 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 106 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasCloudProviderRegionsResource::availableRegions +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/provider/regions?includeCount=true&providers=AWS&tier=M10&pageNum=1&itemsPerPage=100","rel":"self"}],"results":[{"instanceSizes":[{"availableRegions":[{"default":true,"name":"US_EAST_1"},{"default":false,"name":"US_EAST_2"},{"default":false,"name":"US_WEST_1"},{"default":true,"name":"US_WEST_2"},{"default":false,"name":"CA_CENTRAL_1"},{"default":false,"name":"EU_NORTH_1"},{"default":false,"name":"EU_WEST_1"},{"default":false,"name":"EU_WEST_2"},{"default":false,"name":"EU_WEST_3"},{"default":false,"name":"EU_CENTRAL_1"},{"default":false,"name":"EU_CENTRAL_2"},{"default":false,"name":"SA_EAST_1"},{"default":false,"name":"AP_EAST_1"},{"default":false,"name":"AP_SOUTHEAST_2"},{"default":false,"name":"AP_SOUTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_4"},{"default":false,"name":"AP_NORTHEAST_1"},{"default":false,"name":"AP_NORTHEAST_2"},{"default":false,"name":"AP_NORTHEAST_3"},{"default":false,"name":"AP_SOUTHEAST_1"},{"default":false,"name":"AP_SOUTH_1"},{"default":false,"name":"AP_SOUTH_2"},{"default":false,"name":"ME_CENTRAL_1"},{"default":false,"name":"ME_SOUTH_1"},{"default":false,"name":"AF_SOUTH_1"},{"default":false,"name":"EU_SOUTH_1"},{"default":false,"name":"EU_SOUTH_2"},{"default":false,"name":"IL_CENTRAL_1"},{"default":false,"name":"CA_WEST_1"},{"default":false,"name":"AP_SOUTHEAST_5"},{"default":false,"name":"AP_SOUTHEAST_7"},{"default":false,"name":"MX_CENTRAL_1"}],"name":"M10"}],"provider":"AWS"}],"totalCount":1} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost index 55f35424e3..4080a1d0c5 100644 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/GET_api_private_unauth_nds_defaultMongoDBMajorVersion_1.snaphost @@ -1,14 +1,14 @@ HTTP/2.0 200 OK Content-Length: 3 Content-Type: text/plain -Date: Tue, 22 Jul 2025 05:11:34 GMT +Date: Thu, 24 Jul 2025 15:04:59 GMT Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; Vary: Accept-Encoding X-Content-Type-Options: nosniff X-Frame-Options: DENY -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none X-Xgen-Up-Proto: HTTP/2 diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_1.snaphost index 7f6ac7207f..aee7e5cb88 100644 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_1.snaphost +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_1.snaphost @@ -1,17 +1,17 @@ HTTP/2.0 201 Created -Content-Length: 1073 +Content-Length: 1074 Content-Type: application/vnd.atlas.2023-01-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:32 GMT +Date: Thu, 24 Jul 2025 15:04:56 GMT Location: http://localhost:8080//api/atlas/v1.0 Referrer-Policy: strict-origin-when-cross-origin Server: mdbws Strict-Transport-Security: max-age=31536000; includeSubdomains; X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 2126 +X-Envoy-Upstream-Service-Time: 2681 X-Frame-Options: DENY X-Java-Method: ApiAtlasGroupsResource::addGroup X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master X-Permitted-Cross-Domain-Policies: none -{"clusterCount":0,"created":"2025-07-22T05:11:34Z","id":"687f1d8444f1ab3f84231469","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"atlasStreams-e2e-58","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file +{"clusterCount":0,"created":"2025-07-24T15:04:59Z","id":"68824b9842be0f23307f35ad","links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/containers","rel":"https://cloud.mongodb.com/containers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters","rel":"https://cloud.mongodb.com/clusters"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/databaseUsers","rel":"https://cloud.mongodb.com/databaseUsers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/peers","rel":"https://cloud.mongodb.com/peers"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/processes","rel":"https://cloud.mongodb.com/processes"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/whitelist","rel":"https://cloud.mongodb.com/whitelist"}],"name":"atlasStreams-e2e-397","orgId":"a0123456789abcdef012345a","withDefaultAlertsSettings":true} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_1.snaphost deleted file mode 100644 index e4dea03214..0000000000 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_687f1d8444f1ab3f84231469_clusters_1.snaphost +++ /dev/null @@ -1,18 +0,0 @@ -HTTP/2.0 201 Created -Content-Length: 1796 -Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 -Date: Tue, 22 Jul 2025 05:11:35 GMT -Deprecation: Mon, 5 Aug 2024 00:00:00 GMT -Referrer-Policy: strict-origin-when-cross-origin -Server: mdbws -Strict-Transport-Security: max-age=31536000; includeSubdomains; -Sunset: Sun, 1 Mar 2026 00:00:00 GMT -X-Content-Type-Options: nosniff -X-Envoy-Upstream-Service-Time: 661 -X-Frame-Options: DENY -X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster -X-Java-Version: 17.0.15+6 -X-Mongodb-Service-Version: gitHash=bb9e79411fd875014d78a71092d09e70eba48244; versionString=master -X-Permitted-Cross-Domain-Policies: none - -{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-22T05:11:36Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"687f1d8444f1ab3f84231469","id":"687f1d8844f1ab3f84231508","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/687f1d8444f1ab3f84231469/clusters/cluster-467/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-467","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"687f1d8744f1ab3f842314f4","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"687f1d8744f1ab3f842314fc","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_1.snaphost b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_1.snaphost new file mode 100644 index 0000000000..e071082e02 --- /dev/null +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/POST_api_atlas_v2_groups_68824b9842be0f23307f35ad_clusters_1.snaphost @@ -0,0 +1,18 @@ +HTTP/2.0 201 Created +Content-Length: 1796 +Content-Type: application/vnd.atlas.2023-02-01+json;charset=utf-8 +Date: Thu, 24 Jul 2025 15:05:00 GMT +Deprecation: Mon, 5 Aug 2024 00:00:00 GMT +Referrer-Policy: strict-origin-when-cross-origin +Server: mdbws +Strict-Transport-Security: max-age=31536000; includeSubdomains; +Sunset: Sun, 1 Mar 2026 00:00:00 GMT +X-Content-Type-Options: nosniff +X-Envoy-Upstream-Service-Time: 612 +X-Frame-Options: DENY +X-Java-Method: ApiAtlasClusterDescriptionV15Resource::createCluster +X-Java-Version: 17.0.15+6 +X-Mongodb-Service-Version: gitHash=8a5d994bc6bc5dc2c9f35e4a815f6c5f6b7e434b; versionString=master +X-Permitted-Cross-Domain-Policies: none + +{"advancedConfiguration":{"customOpensslCipherConfigTls12":[],"minimumEnabledTlsProtocol":"TLS1_2","tlsCipherConfigMode":"DEFAULT"},"backupEnabled":false,"biConnector":{"enabled":false,"readPreference":"secondary"},"clusterType":"REPLICASET","connectionStrings":{},"createDate":"2025-07-24T15:05:00Z","diskSizeGB":30.0,"diskWarmingMode":"FULLY_WARMED","encryptionAtRestProvider":"NONE","globalClusterSelfManagedSharding":false,"groupId":"68824b9842be0f23307f35ad","id":"68824b9cb448981053345bf5","labels":[],"links":[{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173","rel":"self"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/restoreJobs","rel":"https://cloud.mongodb.com/restoreJobs"},{"href":"http://localhost:8080/api/atlas/v2/groups/68824b9842be0f23307f35ad/clusters/cluster-173/backup/snapshots","rel":"https://cloud.mongodb.com/snapshots"}],"mongoDBMajorVersion":"8.0","mongoDBVersion":"8.0.12","name":"cluster-173","paused":false,"pitEnabled":false,"replicationSpecs":[{"id":"68824b9cb448981053345bbc","numShards":1,"regionConfigs":[{"analyticsSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"autoScaling":{"compute":{"enabled":false,"predictiveEnabled":false,"scaleDownEnabled":false},"diskGB":{"enabled":false}},"electableSpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":3},"priority":7,"providerName":"AWS","readOnlySpecs":{"instanceSize":"M10","diskIOPS":3000,"ebsVolumeType":"STANDARD","nodeCount":0},"regionName":"US_EAST_1"}],"zoneId":"68824b9cb448981053345bcf","zoneName":"Zone 1"}],"rootCertType":"ISRGROOTX1","stateName":"CREATING","terminationProtectionEnabled":false,"versionReleaseSystem":"LTS"} \ No newline at end of file diff --git a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/memory.json b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/memory.json index a91de4fb2f..5f92e6b7a0 100644 --- a/test/e2e/testdata/.snapshots/TestStreamsWithClusters/memory.json +++ b/test/e2e/testdata/.snapshots/TestStreamsWithClusters/memory.json @@ -1 +1 @@ -{"TestStreamsWithClusters/clusterGenerateClusterName":"cluster-467","TestStreamsWithClusters/instanceName":"instance-140"} \ No newline at end of file +{"TestStreamsWithClusters/clusterGenerateClusterName":"cluster-173","TestStreamsWithClusters/instanceName":"instance-852"} \ No newline at end of file