diff --git a/internal/auth0/role/data_source.go b/internal/auth0/role/data_source.go index 9c14f885f..071174886 100644 --- a/internal/auth0/role/data_source.go +++ b/internal/auth0/role/data_source.go @@ -189,20 +189,28 @@ func getAllRoleUsers( roleID string, ) ([]*management.User, error) { var users []*management.User - var page int + var from string + + options := []management.RequestOption{ + management.Take(100), + } + for { - userList, err := api.Role.Users(ctx, roleID, management.Page(page), management.PerPage(100)) + if from != "" { + options = append(options, management.From(from)) + } + + userList, err := api.Role.Users(ctx, roleID, options...) if err != nil { return nil, err } users = append(users, userList.Users...) - if !userList.HasNext() { break } - page++ + from = userList.Next } return users, nil diff --git a/test/data/recordings/TestAccDataSourceRole.yaml b/test/data/recordings/TestAccDataSourceRole.yaml index 88826fc71..8ab19feb6 100644 --- a/test/data/recordings/TestAccDataSourceRole.yaml +++ b/test/data/recordings/TestAccDataSourceRole.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=this-role-does-not-exist&page=0&per_page=100 method: GET response: @@ -35,7 +35,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 230.279875ms + duration: 491.61425ms - id: 1 request: proto: HTTP/1.1 @@ -54,7 +54,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: 306 uncompressed: false - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 189.065792ms + duration: 931.1905ms - id: 2 request: proto: HTTP/1.1 @@ -90,8 +90,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: PATCH response: proto: HTTP/2.0 @@ -101,13 +101,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.161ms + duration: 393.307ms - id: 3 request: proto: HTTP/1.1 @@ -126,8 +126,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: PATCH response: proto: HTTP/2.0 @@ -137,13 +137,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.215ms + duration: 410.672833ms - id: 4 request: proto: HTTP/1.1 @@ -162,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: PATCH response: proto: HTTP/2.0 @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.571875ms + duration: 331.68675ms - id: 5 request: proto: HTTP/1.1 @@ -197,8 +197,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: GET response: proto: HTTP/2.0 @@ -208,13 +208,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.37425ms + duration: 384.976958ms - id: 6 request: proto: HTTP/1.1 @@ -232,7 +232,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -243,13 +243,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.229292ms + duration: 362.956833ms - id: 7 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: PATCH response: @@ -279,13 +279,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.444209ms + duration: 357.567458ms - id: 8 request: proto: HTTP/1.1 @@ -303,7 +303,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -314,13 +314,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.0345ms + duration: 442.478958ms - id: 9 request: proto: HTTP/1.1 @@ -339,7 +339,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -350,13 +350,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.651083ms + duration: 357.519042ms - id: 10 request: proto: HTTP/1.1 @@ -374,8 +374,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -385,13 +385,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.610625ms + duration: 456.649208ms - id: 11 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions method: POST response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 346.642959ms + duration: 395.557291ms - id: 12 request: proto: HTTP/1.1 @@ -445,8 +445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,7 +462,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.757417ms + duration: 556.060417ms - id: 13 request: proto: HTTP/1.1 @@ -481,7 +481,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -492,13 +492,13 @@ interactions: trailer: {} content_length: 597 uncompressed: false - body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-10-14T13:27:44.558Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c50fb4359c069564cb4","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:44.558Z","user_id":"auth0|670d1c50fb4359c069564cb4","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 388.294333ms + duration: 535.839292ms - id: 14 request: proto: HTTP/1.1 @@ -516,8 +516,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4 method: GET response: proto: HTTP/2.0 @@ -527,13 +527,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-10-14T13:27:44.558Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c50fb4359c069564cb4","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:44.558Z","user_id":"auth0|670d1c50fb4359c069564cb4","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 206.027167ms + duration: 344.645833ms - id: 15 request: proto: HTTP/1.1 @@ -546,14 +546,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LmR90bBh3V7DLCPP"]} + {"roles":["rol_bY0sng8HT4GHETwy"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles method: POST response: proto: HTTP/2.0 @@ -569,7 +569,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 189.687209ms + duration: 400.273125ms - id: 16 request: proto: HTTP/1.1 @@ -587,8 +587,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -598,13 +598,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.395291ms + duration: 366.862875ms - id: 17 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -634,13 +634,13 @@ interactions: trailer: {} content_length: 597 uncompressed: false - body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-10-14T13:27:46.177Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c52fb4359c069564cb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:46.177Z","user_id":"auth0|670d1c52fb4359c069564cb6","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 418.775959ms + duration: 503.071875ms - id: 18 request: proto: HTTP/1.1 @@ -658,8 +658,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6 method: GET response: proto: HTTP/2.0 @@ -669,13 +669,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-10-14T13:27:46.177Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c52fb4359c069564cb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:46.177Z","user_id":"auth0|670d1c52fb4359c069564cb6","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.862209ms + duration: 375.335833ms - id: 19 request: proto: HTTP/1.1 @@ -688,14 +688,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LmR90bBh3V7DLCPP"]} + {"roles":["rol_bY0sng8HT4GHETwy"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles method: POST response: proto: HTTP/2.0 @@ -711,7 +711,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 218.188667ms + duration: 452.994209ms - id: 20 request: proto: HTTP/1.1 @@ -729,8 +729,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -740,13 +740,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 204.987709ms + duration: 343.643209ms - id: 21 request: proto: HTTP/1.1 @@ -764,7 +764,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: @@ -775,13 +775,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.980709ms + duration: 397.072208ms - id: 22 request: proto: HTTP/1.1 @@ -799,8 +799,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -816,7 +816,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.679875ms + duration: 407.953125ms - id: 23 request: proto: HTTP/1.1 @@ -834,8 +834,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -845,13 +845,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.123542ms + duration: 410.558958ms - id: 24 request: proto: HTTP/1.1 @@ -869,7 +869,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: @@ -880,13 +880,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.921542ms + duration: 341.226333ms - id: 25 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -921,7 +921,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 370.00825ms + duration: 373.25ms - id: 26 request: proto: HTTP/1.1 @@ -939,8 +939,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -950,13 +950,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.396542ms + duration: 494.806291ms - id: 27 request: proto: HTTP/1.1 @@ -974,8 +974,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: GET response: proto: HTTP/2.0 @@ -985,13 +985,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.612334ms + duration: 355.614541ms - id: 28 request: proto: HTTP/1.1 @@ -1009,7 +1009,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -1020,13 +1020,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.040083ms + duration: 327.850583ms - id: 29 request: proto: HTTP/1.1 @@ -1044,8 +1044,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -1055,13 +1055,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.941167ms + duration: 335.465041ms - id: 30 request: proto: HTTP/1.1 @@ -1079,8 +1079,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1096,7 +1096,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.988042ms + duration: 436.977667ms - id: 31 request: proto: HTTP/1.1 @@ -1114,8 +1114,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4 method: GET response: proto: HTTP/2.0 @@ -1125,13 +1125,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-10-14T13:27:44.558Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c50fb4359c069564cb4","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:44.558Z","user_id":"auth0|670d1c50fb4359c069564cb4","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.271333ms + duration: 404.099125ms - id: 32 request: proto: HTTP/1.1 @@ -1149,8 +1149,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1160,13 +1160,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.695667ms + duration: 395.019625ms - id: 33 request: proto: HTTP/1.1 @@ -1184,8 +1184,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6 method: GET response: proto: HTTP/2.0 @@ -1195,13 +1195,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-10-14T13:27:46.177Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c52fb4359c069564cb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:46.177Z","user_id":"auth0|670d1c52fb4359c069564cb6","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.949417ms + duration: 356.920791ms - id: 34 request: proto: HTTP/1.1 @@ -1219,8 +1219,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1230,13 +1230,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.711458ms + duration: 454.867334ms - id: 35 request: proto: HTTP/1.1 @@ -1254,7 +1254,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: @@ -1265,13 +1265,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.798042ms + duration: 405.23ms - id: 36 request: proto: HTTP/1.1 @@ -1289,8 +1289,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1306,7 +1306,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.054917ms + duration: 350.951ms - id: 37 request: proto: HTTP/1.1 @@ -1324,8 +1324,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1335,13 +1335,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 208.908667ms + duration: 918.489958ms - id: 38 request: proto: HTTP/1.1 @@ -1359,8 +1359,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: GET response: proto: HTTP/2.0 @@ -1370,13 +1370,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.509917ms + duration: 333.332375ms - id: 39 request: proto: HTTP/1.1 @@ -1394,7 +1394,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -1405,13 +1405,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.625958ms + duration: 381.219792ms - id: 40 request: proto: HTTP/1.1 @@ -1429,8 +1429,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -1440,13 +1440,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.32225ms + duration: 353.484167ms - id: 41 request: proto: HTTP/1.1 @@ -1464,8 +1464,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1481,7 +1481,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.146833ms + duration: 360.0885ms - id: 42 request: proto: HTTP/1.1 @@ -1499,8 +1499,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4 method: GET response: proto: HTTP/2.0 @@ -1510,13 +1510,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-10-14T13:27:44.558Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c50fb4359c069564cb4","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:44.558Z","user_id":"auth0|670d1c50fb4359c069564cb4","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.513875ms + duration: 325.114291ms - id: 43 request: proto: HTTP/1.1 @@ -1534,8 +1534,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1545,13 +1545,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.23025ms + duration: 433.325709ms - id: 44 request: proto: HTTP/1.1 @@ -1569,8 +1569,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6 method: GET response: proto: HTTP/2.0 @@ -1580,13 +1580,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-10-14T13:27:46.177Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c52fb4359c069564cb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:46.177Z","user_id":"auth0|670d1c52fb4359c069564cb6","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.37875ms + duration: 389.493291ms - id: 45 request: proto: HTTP/1.1 @@ -1604,8 +1604,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1615,13 +1615,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.98325ms + duration: 370.093542ms - id: 46 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.81025ms + duration: 341.947959ms - id: 47 request: proto: HTTP/1.1 @@ -1674,8 +1674,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1691,7 +1691,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.929583ms + duration: 359.373916ms - id: 48 request: proto: HTTP/1.1 @@ -1709,8 +1709,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1720,13 +1720,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.817375ms + duration: 333.992958ms - id: 49 request: proto: HTTP/1.1 @@ -1744,8 +1744,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -1755,13 +1755,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 192.951792ms + duration: 364.976125ms - id: 50 request: proto: HTTP/1.1 @@ -1779,8 +1779,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1796,7 +1796,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.216833ms + duration: 453.802458ms - id: 51 request: proto: HTTP/1.1 @@ -1814,8 +1814,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1825,13 +1825,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.089416ms + duration: 509.091625ms - id: 52 request: proto: HTTP/1.1 @@ -1849,8 +1849,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: GET response: proto: HTTP/2.0 @@ -1860,13 +1860,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.057291ms + duration: 326.491917ms - id: 53 request: proto: HTTP/1.1 @@ -1884,7 +1884,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -1895,13 +1895,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.152833ms + duration: 336.035ms - id: 54 request: proto: HTTP/1.1 @@ -1919,8 +1919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -1930,13 +1930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.801125ms + duration: 449.18075ms - id: 55 request: proto: HTTP/1.1 @@ -1954,8 +1954,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1971,7 +1971,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.481125ms + duration: 337.869792ms - id: 56 request: proto: HTTP/1.1 @@ -1989,8 +1989,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4 method: GET response: proto: HTTP/2.0 @@ -2000,13 +2000,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-10-14T13:27:44.558Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c50fb4359c069564cb4","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:44.558Z","user_id":"auth0|670d1c50fb4359c069564cb4","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.823042ms + duration: 327.614958ms - id: 57 request: proto: HTTP/1.1 @@ -2024,8 +2024,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2035,13 +2035,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.441625ms + duration: 355.302417ms - id: 58 request: proto: HTTP/1.1 @@ -2059,8 +2059,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6 method: GET response: proto: HTTP/2.0 @@ -2070,13 +2070,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-10-14T13:27:46.177Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"670d1c52fb4359c069564cb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-10-14T13:27:46.177Z","user_id":"auth0|670d1c52fb4359c069564cb6","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.589542ms + duration: 369.4ms - id: 59 request: proto: HTTP/1.1 @@ -2094,8 +2094,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2105,13 +2105,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.111583ms + duration: 360.651708ms - id: 60 request: proto: HTTP/1.1 @@ -2129,8 +2129,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: GET response: proto: HTTP/2.0 @@ -2140,13 +2140,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_bY0sng8HT4GHETwy","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.149917ms + duration: 355.517958ms - id: 61 request: proto: HTTP/1.1 @@ -2164,8 +2164,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2181,7 +2181,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 210.308667ms + duration: 353.157459ms - id: 62 request: proto: HTTP/1.1 @@ -2199,8 +2199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2210,13 +2210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|670d1c50fb4359c069564cb4","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|670d1c52fb4359c069564cb6","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 198.7705ms + duration: 402.631458ms - id: 63 request: proto: HTTP/1.1 @@ -2229,14 +2229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LmR90bBh3V7DLCPP"]} + {"roles":["rol_bY0sng8HT4GHETwy"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6/roles method: DELETE response: proto: HTTP/2.0 @@ -2252,7 +2252,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 160.282083ms + duration: 374.448167ms - id: 64 request: proto: HTTP/1.1 @@ -2270,8 +2270,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c52fb4359c069564cb6 method: DELETE response: proto: HTTP/2.0 @@ -2287,7 +2287,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 218.552584ms + duration: 445.114ms - id: 65 request: proto: HTTP/1.1 @@ -2300,14 +2300,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LmR90bBh3V7DLCPP"]} + {"roles":["rol_bY0sng8HT4GHETwy"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4/roles method: DELETE response: proto: HTTP/2.0 @@ -2323,7 +2323,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 172.996ms + duration: 431.100084ms - id: 66 request: proto: HTTP/1.1 @@ -2341,8 +2341,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C670d1c50fb4359c069564cb4 method: DELETE response: proto: HTTP/2.0 @@ -2358,7 +2358,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 253.401166ms + duration: 359.240959ms - id: 67 request: proto: HTTP/1.1 @@ -2377,8 +2377,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy/permissions method: DELETE response: proto: HTTP/2.0 @@ -2394,7 +2394,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 163.28475ms + duration: 438.540334ms - id: 68 request: proto: HTTP/1.1 @@ -2413,8 +2413,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bY0sng8HT4GHETwy method: DELETE response: proto: HTTP/2.0 @@ -2430,7 +2430,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 182.136916ms + duration: 335.430834ms - id: 69 request: proto: HTTP/1.1 @@ -2449,7 +2449,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: PATCH response: @@ -2460,13 +2460,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"670d1c4b2049741b2004d5b3","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 222.31425ms + duration: 359.132833ms - id: 70 request: proto: HTTP/1.1 @@ -2484,8 +2484,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1c4b2049741b2004d5b3 method: DELETE response: proto: HTTP/2.0 @@ -2501,4 +2501,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 207.330208ms + duration: 391.504791ms diff --git a/test/data/recordings/TestAccRolePermission.yaml b/test/data/recordings/TestAccRolePermission.yaml index fb87c69e1..9b92d1f20 100644 --- a/test/data/recordings/TestAccRolePermission.yaml +++ b/test/data/recordings/TestAccRolePermission.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 324 uncompressed: false - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 199.172583ms + duration: 498.874041ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: PATCH response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.976833ms + duration: 368.674334ms - id: 2 request: proto: HTTP/1.1 @@ -91,8 +91,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: PATCH response: proto: HTTP/2.0 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 227.255875ms + duration: 465.819083ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: PATCH response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.664ms + duration: 440.929917ms - id: 4 request: proto: HTTP/1.1 @@ -162,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.417166ms + duration: 552.827583ms - id: 5 request: proto: HTTP/1.1 @@ -197,7 +197,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -208,13 +208,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.530875ms + duration: 412.481375ms - id: 6 request: proto: HTTP/1.1 @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: PATCH response: @@ -244,13 +244,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.789834ms + duration: 455.415458ms - id: 7 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -279,13 +279,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 189.916708ms + duration: 503.4125ms - id: 8 request: proto: HTTP/1.1 @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -315,13 +315,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.885959ms + duration: 500.471792ms - id: 9 request: proto: HTTP/1.1 @@ -339,8 +339,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -350,13 +350,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.72975ms + duration: 351.847417ms - id: 10 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: POST response: proto: HTTP/2.0 @@ -392,7 +392,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 167.151ms + duration: 387.912417ms - id: 11 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.939333ms + duration: 405.939167ms - id: 12 request: proto: HTTP/1.1 @@ -445,8 +445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -456,13 +456,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.281292ms + duration: 518.254583ms - id: 13 request: proto: HTTP/1.1 @@ -480,8 +480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -497,7 +497,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 204.317625ms + duration: 764.972125ms - id: 14 request: proto: HTTP/1.1 @@ -515,8 +515,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -524,15 +524,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.772791ms + duration: 441.032459ms - id: 15 request: proto: HTTP/1.1 @@ -550,8 +550,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -561,13 +561,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.527041ms + duration: 365.161583ms - id: 16 request: proto: HTTP/1.1 @@ -585,8 +585,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -602,7 +602,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 365.947125ms + duration: 414.527167ms - id: 17 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -629,15 +629,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.276125ms + duration: 373.946334ms - id: 18 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -666,13 +666,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 150.616042ms + duration: 447.860958ms - id: 19 request: proto: HTTP/1.1 @@ -690,7 +690,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -701,13 +701,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.535583ms + duration: 344.385417ms - id: 20 request: proto: HTTP/1.1 @@ -725,8 +725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -736,13 +736,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 198.607375ms + duration: 496.012375ms - id: 21 request: proto: HTTP/1.1 @@ -760,8 +760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -777,7 +777,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.310084ms + duration: 711.276166ms - id: 22 request: proto: HTTP/1.1 @@ -795,8 +795,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -806,13 +806,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.577875ms + duration: 436.522167ms - id: 23 request: proto: HTTP/1.1 @@ -830,8 +830,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -847,7 +847,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.278709ms + duration: 475.564708ms - id: 24 request: proto: HTTP/1.1 @@ -865,8 +865,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -874,15 +874,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.641209ms + duration: 490.215458ms - id: 25 request: proto: HTTP/1.1 @@ -900,8 +900,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -911,13 +911,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.974042ms + duration: 605.257208ms - id: 26 request: proto: HTTP/1.1 @@ -935,7 +935,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -946,13 +946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.940459ms + duration: 497.515208ms - id: 27 request: proto: HTTP/1.1 @@ -970,8 +970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -981,13 +981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.973708ms + duration: 506.185916ms - id: 28 request: proto: HTTP/1.1 @@ -1005,8 +1005,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1022,7 +1022,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.112958ms + duration: 475.926ms - id: 29 request: proto: HTTP/1.1 @@ -1041,8 +1041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: POST response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 175.269ms + duration: 501.036916ms - id: 30 request: proto: HTTP/1.1 @@ -1076,8 +1076,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1093,7 +1093,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.205958ms + duration: 351.444334ms - id: 31 request: proto: HTTP/1.1 @@ -1111,8 +1111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1122,13 +1122,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.563166ms + duration: 413.336708ms - id: 32 request: proto: HTTP/1.1 @@ -1146,8 +1146,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1163,7 +1163,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.324084ms + duration: 907.257083ms - id: 33 request: proto: HTTP/1.1 @@ -1181,8 +1181,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1190,15 +1190,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.678125ms + duration: 338.470667ms - id: 34 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1227,13 +1227,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.395208ms + duration: 474.565792ms - id: 35 request: proto: HTTP/1.1 @@ -1251,8 +1251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1268,7 +1268,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.980625ms + duration: 442.256958ms - id: 36 request: proto: HTTP/1.1 @@ -1286,8 +1286,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1295,15 +1295,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 183.85225ms + duration: 453.354042ms - id: 37 request: proto: HTTP/1.1 @@ -1321,8 +1321,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -1332,13 +1332,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.91925ms + duration: 457.458291ms - id: 38 request: proto: HTTP/1.1 @@ -1356,7 +1356,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -1367,13 +1367,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 371.230125ms + duration: 581.985291ms - id: 39 request: proto: HTTP/1.1 @@ -1391,8 +1391,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1402,13 +1402,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.237917ms + duration: 471.257958ms - id: 40 request: proto: HTTP/1.1 @@ -1426,8 +1426,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1443,7 +1443,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.199917ms + duration: 358.00875ms - id: 41 request: proto: HTTP/1.1 @@ -1461,8 +1461,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1478,7 +1478,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.3655ms + duration: 549.682541ms - id: 42 request: proto: HTTP/1.1 @@ -1496,8 +1496,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1507,13 +1507,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.773334ms + duration: 335.811333ms - id: 43 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.409708ms + duration: 394.59925ms - id: 44 request: proto: HTTP/1.1 @@ -1566,8 +1566,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1575,15 +1575,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.179958ms + duration: 481.391625ms - id: 45 request: proto: HTTP/1.1 @@ -1601,8 +1601,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1618,7 +1618,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.564875ms + duration: 433.477ms - id: 46 request: proto: HTTP/1.1 @@ -1636,8 +1636,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -1647,13 +1647,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"}],"start":0,"limit":100,"total":2}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.923ms + duration: 476.357625ms - id: 47 request: proto: HTTP/1.1 @@ -1671,8 +1671,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1682,13 +1682,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.1495ms + duration: 509.910625ms - id: 48 request: proto: HTTP/1.1 @@ -1706,7 +1706,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -1717,13 +1717,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.872666ms + duration: 530.711ms - id: 49 request: proto: HTTP/1.1 @@ -1741,8 +1741,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1752,13 +1752,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.403958ms + duration: 423.532834ms - id: 50 request: proto: HTTP/1.1 @@ -1776,8 +1776,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1787,13 +1787,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.697ms + duration: 347.479417ms - id: 51 request: proto: HTTP/1.1 @@ -1811,8 +1811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1828,7 +1828,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 236.927541ms + duration: 462.82375ms - id: 52 request: proto: HTTP/1.1 @@ -1846,8 +1846,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1855,15 +1855,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.277ms + duration: 511.391083ms - id: 53 request: proto: HTTP/1.1 @@ -1882,8 +1882,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: DELETE response: proto: HTTP/2.0 @@ -1899,7 +1899,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 190.088125ms + duration: 528.629292ms - id: 54 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: DELETE response: proto: HTTP/2.0 @@ -1935,7 +1935,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 169.138292ms + duration: 500.088459ms - id: 55 request: proto: HTTP/1.1 @@ -1953,8 +1953,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -1964,13 +1964,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.89125ms + duration: 423.849542ms - id: 56 request: proto: HTTP/1.1 @@ -1988,8 +1988,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2005,7 +2005,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.565292ms + duration: 534.771709ms - id: 57 request: proto: HTTP/1.1 @@ -2023,8 +2023,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2032,15 +2032,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 182.519458ms + duration: 484.476917ms - id: 58 request: proto: HTTP/1.1 @@ -2058,8 +2058,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -2069,13 +2069,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.773333ms + duration: 539.182333ms - id: 59 request: proto: HTTP/1.1 @@ -2093,7 +2093,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2104,13 +2104,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.327ms + duration: 497.919625ms - id: 60 request: proto: HTTP/1.1 @@ -2128,8 +2128,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2139,13 +2139,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.465083ms + duration: 1.7104025s - id: 61 request: proto: HTTP/1.1 @@ -2163,8 +2163,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2174,13 +2174,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.800792ms + duration: 942.190709ms - id: 62 request: proto: HTTP/1.1 @@ -2198,8 +2198,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2215,7 +2215,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.82075ms + duration: 478.774458ms - id: 63 request: proto: HTTP/1.1 @@ -2233,8 +2233,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2242,15 +2242,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.686ms + duration: 421.008834ms - id: 64 request: proto: HTTP/1.1 @@ -2268,8 +2268,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -2279,13 +2279,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.032ms + duration: 416.91475ms - id: 65 request: proto: HTTP/1.1 @@ -2303,7 +2303,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2314,13 +2314,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.704292ms + duration: 410.079459ms - id: 66 request: proto: HTTP/1.1 @@ -2338,8 +2338,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2349,13 +2349,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.497584ms + duration: 437.913792ms - id: 67 request: proto: HTTP/1.1 @@ -2373,8 +2373,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2384,13 +2384,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.833667ms + duration: 337.321417ms - id: 68 request: proto: HTTP/1.1 @@ -2408,8 +2408,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2425,7 +2425,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.703333ms + duration: 441.911042ms - id: 69 request: proto: HTTP/1.1 @@ -2443,8 +2443,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2452,15 +2452,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.899625ms + duration: 396.120084ms - id: 70 request: proto: HTTP/1.1 @@ -2478,8 +2478,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -2489,13 +2489,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.168ms + duration: 433.462ms - id: 71 request: proto: HTTP/1.1 @@ -2513,7 +2513,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2524,13 +2524,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 208.448958ms + duration: 376.998541ms - id: 72 request: proto: HTTP/1.1 @@ -2548,8 +2548,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2559,13 +2559,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.851291ms + duration: 425.325125ms - id: 73 request: proto: HTTP/1.1 @@ -2583,8 +2583,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2594,13 +2594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.015917ms + duration: 435.199041ms - id: 74 request: proto: HTTP/1.1 @@ -2618,8 +2618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2635,7 +2635,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.610916ms + duration: 494.098542ms - id: 75 request: proto: HTTP/1.1 @@ -2653,8 +2653,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2662,15 +2662,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.395209ms + duration: 451.146917ms - id: 76 request: proto: HTTP/1.1 @@ -2688,8 +2688,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -2699,13 +2699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.005209ms + duration: 534.242125ms - id: 77 request: proto: HTTP/1.1 @@ -2723,7 +2723,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2734,13 +2734,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.673417ms + duration: 378.222ms - id: 78 request: proto: HTTP/1.1 @@ -2758,8 +2758,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2769,13 +2769,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.730625ms + duration: 390.978917ms - id: 79 request: proto: HTTP/1.1 @@ -2794,8 +2794,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: POST response: proto: HTTP/2.0 @@ -2811,7 +2811,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 169.947792ms + duration: 435.48225ms - id: 80 request: proto: HTTP/1.1 @@ -2829,8 +2829,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2846,7 +2846,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.749459ms + duration: 505.445917ms - id: 81 request: proto: HTTP/1.1 @@ -2864,8 +2864,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -2875,13 +2875,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.571375ms + duration: 479.821291ms - id: 82 request: proto: HTTP/1.1 @@ -2899,7 +2899,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.570917ms + duration: 502.560417ms - id: 83 request: proto: HTTP/1.1 @@ -2934,8 +2934,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -2945,13 +2945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.0275ms + duration: 601.139958ms - id: 84 request: proto: HTTP/1.1 @@ -2969,8 +2969,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2986,7 +2986,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.636333ms + duration: 534.223542ms - id: 85 request: proto: HTTP/1.1 @@ -3004,8 +3004,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3021,7 +3021,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.580042ms + duration: 455.46775ms - id: 86 request: proto: HTTP/1.1 @@ -3039,8 +3039,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3050,13 +3050,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.525791ms + duration: 533.630041ms - id: 87 request: proto: HTTP/1.1 @@ -3074,8 +3074,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3091,7 +3091,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.671792ms + duration: 669.760083ms - id: 88 request: proto: HTTP/1.1 @@ -3109,8 +3109,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3118,15 +3118,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.654417ms + duration: 387.015625ms - id: 89 request: proto: HTTP/1.1 @@ -3144,8 +3144,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3161,7 +3161,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.977375ms + duration: 415.7185ms - id: 90 request: proto: HTTP/1.1 @@ -3179,8 +3179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3190,13 +3190,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.0505ms + duration: 315.64275ms - id: 91 request: proto: HTTP/1.1 @@ -3214,8 +3214,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3231,7 +3231,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.53875ms + duration: 487.322291ms - id: 92 request: proto: HTTP/1.1 @@ -3249,8 +3249,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3258,15 +3258,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.985167ms + duration: 420.321084ms - id: 93 request: proto: HTTP/1.1 @@ -3284,8 +3284,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -3295,13 +3295,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.724875ms + duration: 451.753958ms - id: 94 request: proto: HTTP/1.1 @@ -3319,7 +3319,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -3330,13 +3330,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.252875ms + duration: 438.243708ms - id: 95 request: proto: HTTP/1.1 @@ -3354,8 +3354,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3365,13 +3365,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.564667ms + duration: 397.246791ms - id: 96 request: proto: HTTP/1.1 @@ -3389,8 +3389,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3406,7 +3406,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.575708ms + duration: 404.964166ms - id: 97 request: proto: HTTP/1.1 @@ -3424,8 +3424,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3441,7 +3441,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.369083ms + duration: 433.577666ms - id: 98 request: proto: HTTP/1.1 @@ -3459,8 +3459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3476,7 +3476,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.511708ms + duration: 369.761208ms - id: 99 request: proto: HTTP/1.1 @@ -3494,8 +3494,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3505,13 +3505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.510417ms + duration: 506.220875ms - id: 100 request: proto: HTTP/1.1 @@ -3529,8 +3529,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3546,7 +3546,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.796292ms + duration: 511.516292ms - id: 101 request: proto: HTTP/1.1 @@ -3564,8 +3564,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3573,15 +3573,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.409375ms + duration: 352.88325ms - id: 102 request: proto: HTTP/1.1 @@ -3599,8 +3599,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3610,13 +3610,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.312875ms + duration: 375.260041ms - id: 103 request: proto: HTTP/1.1 @@ -3634,8 +3634,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3651,7 +3651,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.995292ms + duration: 390.201041ms - id: 104 request: proto: HTTP/1.1 @@ -3669,8 +3669,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3678,15 +3678,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.219791ms + duration: 454.062708ms - id: 105 request: proto: HTTP/1.1 @@ -3704,8 +3704,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: GET response: proto: HTTP/2.0 @@ -3715,13 +3715,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.550917ms + duration: 584.018958ms - id: 106 request: proto: HTTP/1.1 @@ -3739,7 +3739,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -3750,13 +3750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.954ms + duration: 398.835917ms - id: 107 request: proto: HTTP/1.1 @@ -3774,8 +3774,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3785,13 +3785,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 206.069333ms + duration: 482.485833ms - id: 108 request: proto: HTTP/1.1 @@ -3809,8 +3809,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3826,7 +3826,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.448625ms + duration: 529.357334ms - id: 109 request: proto: HTTP/1.1 @@ -3844,8 +3844,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3861,7 +3861,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.782125ms + duration: 475.769916ms - id: 110 request: proto: HTTP/1.1 @@ -3879,8 +3879,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3896,7 +3896,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 439.314334ms + duration: 514.001917ms - id: 111 request: proto: HTTP/1.1 @@ -3914,8 +3914,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: GET response: proto: HTTP/2.0 @@ -3925,13 +3925,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_S3p4iAzx88HcDHGn","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.428208ms + duration: 830.456625ms - id: 112 request: proto: HTTP/1.1 @@ -3949,8 +3949,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3966,7 +3966,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.301958ms + duration: 514.412417ms - id: 113 request: proto: HTTP/1.1 @@ -3984,8 +3984,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3993,15 +3993,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.782875ms + duration: 508.137ms - id: 114 request: proto: HTTP/1.1 @@ -4020,8 +4020,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: DELETE response: proto: HTTP/2.0 @@ -4037,7 +4037,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 172.080417ms + duration: 590.1475ms - id: 115 request: proto: HTTP/1.1 @@ -4056,8 +4056,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: DELETE response: proto: HTTP/2.0 @@ -4073,7 +4073,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 187.379875ms + duration: 520.050375ms - id: 116 request: proto: HTTP/1.1 @@ -4092,8 +4092,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn/permissions method: DELETE response: proto: HTTP/2.0 @@ -4109,7 +4109,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 171.318709ms + duration: 482.161875ms - id: 117 request: proto: HTTP/1.1 @@ -4128,8 +4128,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_S3p4iAzx88HcDHGn method: DELETE response: proto: HTTP/2.0 @@ -4145,7 +4145,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.503ms + duration: 501.188291ms - id: 118 request: proto: HTTP/1.1 @@ -4164,7 +4164,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: PATCH response: @@ -4175,13 +4175,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"670d1db5c7b833ebd115ca8c","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 216.438ms + duration: 450.687792ms - id: 119 request: proto: HTTP/1.1 @@ -4199,8 +4199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1db5c7b833ebd115ca8c method: DELETE response: proto: HTTP/2.0 @@ -4216,4 +4216,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 226.337667ms + duration: 481.141625ms diff --git a/test/data/recordings/TestAccRolePermissions.yaml b/test/data/recordings/TestAccRolePermissions.yaml index e4b3d9205..2f0bbb64c 100644 --- a/test/data/recordings/TestAccRolePermissions.yaml +++ b/test/data/recordings/TestAccRolePermissions.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 206.59275ms + duration: 339.177083ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: PATCH response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.220666ms + duration: 486.600375ms - id: 2 request: proto: HTTP/1.1 @@ -91,8 +91,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: PATCH response: proto: HTTP/2.0 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.862375ms + duration: 618.475917ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: PATCH response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.080583ms + duration: 512.732458ms - id: 4 request: proto: HTTP/1.1 @@ -162,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.170292ms + duration: 373.383375ms - id: 5 request: proto: HTTP/1.1 @@ -197,7 +197,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -208,13 +208,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.56425ms + duration: 384.248916ms - id: 6 request: proto: HTTP/1.1 @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: PATCH response: @@ -244,13 +244,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.58975ms + duration: 459.19325ms - id: 7 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -279,13 +279,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.8325ms + duration: 558.724084ms - id: 8 request: proto: HTTP/1.1 @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -315,13 +315,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.004167ms + duration: 552.740625ms - id: 9 request: proto: HTTP/1.1 @@ -339,8 +339,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -350,13 +350,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 183.526ms + duration: 511.977625ms - id: 10 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: POST response: proto: HTTP/2.0 @@ -392,7 +392,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 181.09225ms + duration: 433.101ms - id: 11 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.111291ms + duration: 496.186042ms - id: 12 request: proto: HTTP/1.1 @@ -445,8 +445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -456,13 +456,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.4005ms + duration: 501.91825ms - id: 13 request: proto: HTTP/1.1 @@ -480,8 +480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -497,7 +497,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 182.322833ms + duration: 406.859291ms - id: 14 request: proto: HTTP/1.1 @@ -515,8 +515,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -524,15 +524,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.649333ms + duration: 469.746292ms - id: 15 request: proto: HTTP/1.1 @@ -550,8 +550,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -561,13 +561,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.116375ms + duration: 707.737917ms - id: 16 request: proto: HTTP/1.1 @@ -585,8 +585,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -602,7 +602,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.414292ms + duration: 515.072958ms - id: 17 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -629,15 +629,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.5585ms + duration: 382.774083ms - id: 18 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -666,13 +666,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.420542ms + duration: 380.734ms - id: 19 request: proto: HTTP/1.1 @@ -690,7 +690,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -701,13 +701,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.988792ms + duration: 333.9215ms - id: 20 request: proto: HTTP/1.1 @@ -725,8 +725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -736,13 +736,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.64275ms + duration: 394.589542ms - id: 21 request: proto: HTTP/1.1 @@ -760,8 +760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -777,7 +777,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 182.025458ms + duration: 410.86375ms - id: 22 request: proto: HTTP/1.1 @@ -795,8 +795,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -806,13 +806,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.985583ms + duration: 383.860542ms - id: 23 request: proto: HTTP/1.1 @@ -830,8 +830,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -847,7 +847,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.673958ms + duration: 487.849792ms - id: 24 request: proto: HTTP/1.1 @@ -865,8 +865,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -874,15 +874,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.766125ms + duration: 348.21875ms - id: 25 request: proto: HTTP/1.1 @@ -900,8 +900,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -911,13 +911,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.781875ms + duration: 447.002916ms - id: 26 request: proto: HTTP/1.1 @@ -935,7 +935,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -946,13 +946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.112333ms + duration: 320.394042ms - id: 27 request: proto: HTTP/1.1 @@ -970,8 +970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -981,13 +981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.181125ms + duration: 452.721666ms - id: 28 request: proto: HTTP/1.1 @@ -1005,8 +1005,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1022,7 +1022,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.132125ms + duration: 439.119833ms - id: 29 request: proto: HTTP/1.1 @@ -1041,8 +1041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: POST response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 175.639542ms + duration: 466.777292ms - id: 30 request: proto: HTTP/1.1 @@ -1076,8 +1076,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1093,7 +1093,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.229542ms + duration: 338.748125ms - id: 31 request: proto: HTTP/1.1 @@ -1111,8 +1111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1122,13 +1122,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 204.791167ms + duration: 493.323416ms - id: 32 request: proto: HTTP/1.1 @@ -1146,8 +1146,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1163,7 +1163,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 231.013125ms + duration: 493.782083ms - id: 33 request: proto: HTTP/1.1 @@ -1181,8 +1181,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1190,15 +1190,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.066ms + duration: 456.575958ms - id: 34 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1227,13 +1227,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.679375ms + duration: 363.841459ms - id: 35 request: proto: HTTP/1.1 @@ -1251,8 +1251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1268,7 +1268,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.558458ms + duration: 370.412ms - id: 36 request: proto: HTTP/1.1 @@ -1286,8 +1286,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1295,15 +1295,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.468625ms + duration: 416.671541ms - id: 37 request: proto: HTTP/1.1 @@ -1321,8 +1321,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -1332,13 +1332,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 145.907459ms + duration: 456.692708ms - id: 38 request: proto: HTTP/1.1 @@ -1356,7 +1356,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -1367,13 +1367,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.252375ms + duration: 517.856917ms - id: 39 request: proto: HTTP/1.1 @@ -1391,8 +1391,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1402,13 +1402,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.160625ms + duration: 392.955708ms - id: 40 request: proto: HTTP/1.1 @@ -1426,8 +1426,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1443,7 +1443,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.56775ms + duration: 410.42725ms - id: 41 request: proto: HTTP/1.1 @@ -1461,8 +1461,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1472,13 +1472,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.570917ms + duration: 501.668334ms - id: 42 request: proto: HTTP/1.1 @@ -1496,8 +1496,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1513,7 +1513,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 191.644917ms + duration: 498.342125ms - id: 43 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1540,15 +1540,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.935416ms + duration: 440.825708ms - id: 44 request: proto: HTTP/1.1 @@ -1566,8 +1566,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -1577,13 +1577,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.454084ms + duration: 430.215583ms - id: 45 request: proto: HTTP/1.1 @@ -1601,7 +1601,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -1612,13 +1612,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.634958ms + duration: 326.084875ms - id: 46 request: proto: HTTP/1.1 @@ -1636,8 +1636,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1647,13 +1647,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.246208ms + duration: 374.815375ms - id: 47 request: proto: HTTP/1.1 @@ -1671,8 +1671,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1688,7 +1688,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.031041ms + duration: 377.001292ms - id: 48 request: proto: HTTP/1.1 @@ -1707,8 +1707,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: DELETE response: proto: HTTP/2.0 @@ -1724,7 +1724,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 180.191083ms + duration: 393.819875ms - id: 49 request: proto: HTTP/1.1 @@ -1742,8 +1742,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1759,7 +1759,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.206875ms + duration: 375.97475ms - id: 50 request: proto: HTTP/1.1 @@ -1777,8 +1777,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1788,13 +1788,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.35475ms + duration: 430.403042ms - id: 51 request: proto: HTTP/1.1 @@ -1812,8 +1812,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1829,7 +1829,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.200875ms + duration: 534.88375ms - id: 52 request: proto: HTTP/1.1 @@ -1847,8 +1847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1856,15 +1856,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 192.91225ms + duration: 464.26875ms - id: 53 request: proto: HTTP/1.1 @@ -1882,8 +1882,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -1893,13 +1893,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.874958ms + duration: 597.446458ms - id: 54 request: proto: HTTP/1.1 @@ -1917,8 +1917,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1934,7 +1934,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.021834ms + duration: 476.171125ms - id: 55 request: proto: HTTP/1.1 @@ -1952,8 +1952,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1961,15 +1961,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.255084ms + duration: 477.070583ms - id: 56 request: proto: HTTP/1.1 @@ -1987,8 +1987,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -1998,13 +1998,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.591042ms + duration: 649.141125ms - id: 57 request: proto: HTTP/1.1 @@ -2022,7 +2022,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2033,13 +2033,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.113833ms + duration: 422.857083ms - id: 58 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2068,13 +2068,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.932209ms + duration: 417.123542ms - id: 59 request: proto: HTTP/1.1 @@ -2092,8 +2092,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2109,7 +2109,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.344875ms + duration: 388.202ms - id: 60 request: proto: HTTP/1.1 @@ -2127,8 +2127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2138,13 +2138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.8755ms + duration: 405.51ms - id: 61 request: proto: HTTP/1.1 @@ -2162,8 +2162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2179,7 +2179,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.916ms + duration: 387.294667ms - id: 62 request: proto: HTTP/1.1 @@ -2197,8 +2197,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2206,15 +2206,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.131083ms + duration: 481.298875ms - id: 63 request: proto: HTTP/1.1 @@ -2232,8 +2232,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2243,13 +2243,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermissions","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.269542ms + duration: 429.89175ms - id: 64 request: proto: HTTP/1.1 @@ -2267,8 +2267,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -2278,13 +2278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermissions","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions"}],"start":0,"limit":100,"total":1}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.415125ms + duration: 430.864292ms - id: 65 request: proto: HTTP/1.1 @@ -2302,7 +2302,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2313,13 +2313,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.818916ms + duration: 469.217917ms - id: 66 request: proto: HTTP/1.1 @@ -2337,8 +2337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2348,13 +2348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.055375ms + duration: 401.407292ms - id: 67 request: proto: HTTP/1.1 @@ -2372,8 +2372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2383,13 +2383,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.3205ms + duration: 439.941333ms - id: 68 request: proto: HTTP/1.1 @@ -2407,8 +2407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2424,7 +2424,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.972333ms + duration: 339.405791ms - id: 69 request: proto: HTTP/1.1 @@ -2442,8 +2442,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2451,15 +2451,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.45525ms + duration: 413.448667ms - id: 70 request: proto: HTTP/1.1 @@ -2478,8 +2478,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: DELETE response: proto: HTTP/2.0 @@ -2495,7 +2495,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 200.58025ms + duration: 385.504ms - id: 71 request: proto: HTTP/1.1 @@ -2513,8 +2513,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2524,13 +2524,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.999334ms + duration: 329.656709ms - id: 72 request: proto: HTTP/1.1 @@ -2548,8 +2548,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2565,7 +2565,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 215.306584ms + duration: 505.715041ms - id: 73 request: proto: HTTP/1.1 @@ -2583,8 +2583,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2592,15 +2592,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.381542ms + duration: 469.236125ms - id: 74 request: proto: HTTP/1.1 @@ -2618,8 +2618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -2629,13 +2629,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 150.837917ms + duration: 365.401166ms - id: 75 request: proto: HTTP/1.1 @@ -2653,7 +2653,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2664,13 +2664,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.109083ms + duration: 335.058084ms - id: 76 request: proto: HTTP/1.1 @@ -2688,8 +2688,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2699,13 +2699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.335334ms + duration: 450.280375ms - id: 77 request: proto: HTTP/1.1 @@ -2723,8 +2723,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2734,13 +2734,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.955292ms + duration: 414.842042ms - id: 78 request: proto: HTTP/1.1 @@ -2758,8 +2758,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2775,7 +2775,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.131542ms + duration: 381.076209ms - id: 79 request: proto: HTTP/1.1 @@ -2793,8 +2793,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2802,15 +2802,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.48625ms + duration: 393.605791ms - id: 80 request: proto: HTTP/1.1 @@ -2828,8 +2828,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -2839,13 +2839,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.505ms + duration: 375.114083ms - id: 81 request: proto: HTTP/1.1 @@ -2863,7 +2863,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 213.968125ms + duration: 807.950917ms - id: 82 request: proto: HTTP/1.1 @@ -2898,8 +2898,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2909,13 +2909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.37925ms + duration: 549.683625ms - id: 83 request: proto: HTTP/1.1 @@ -2933,8 +2933,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -2944,13 +2944,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 150.189834ms + duration: 373.472625ms - id: 84 request: proto: HTTP/1.1 @@ -2968,8 +2968,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2985,7 +2985,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.858666ms + duration: 395.184125ms - id: 85 request: proto: HTTP/1.1 @@ -3003,8 +3003,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3012,15 +3012,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.262125ms + duration: 369.257084ms - id: 86 request: proto: HTTP/1.1 @@ -3038,8 +3038,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -3049,13 +3049,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.418ms + duration: 378.133041ms - id: 87 request: proto: HTTP/1.1 @@ -3073,7 +3073,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3084,13 +3084,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.111417ms + duration: 365.498958ms - id: 88 request: proto: HTTP/1.1 @@ -3108,8 +3108,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3119,13 +3119,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.187291ms + duration: 480.012334ms - id: 89 request: proto: HTTP/1.1 @@ -3143,8 +3143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3154,13 +3154,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.007166ms + duration: 401.415334ms - id: 90 request: proto: HTTP/1.1 @@ -3178,8 +3178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3195,7 +3195,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.26475ms + duration: 489.071667ms - id: 91 request: proto: HTTP/1.1 @@ -3213,8 +3213,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3222,15 +3222,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.74525ms + duration: 432.352625ms - id: 92 request: proto: HTTP/1.1 @@ -3248,8 +3248,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -3259,13 +3259,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.296625ms + duration: 408.581375ms - id: 93 request: proto: HTTP/1.1 @@ -3283,7 +3283,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3294,13 +3294,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.453333ms + duration: 400.2715ms - id: 94 request: proto: HTTP/1.1 @@ -3318,8 +3318,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3329,13 +3329,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.867834ms + duration: 434.639166ms - id: 95 request: proto: HTTP/1.1 @@ -3354,8 +3354,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: POST response: proto: HTTP/2.0 @@ -3371,7 +3371,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 182.876042ms + duration: 425.481833ms - id: 96 request: proto: HTTP/1.1 @@ -3389,8 +3389,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3406,7 +3406,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 182.082917ms + duration: 338.758375ms - id: 97 request: proto: HTTP/1.1 @@ -3425,8 +3425,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: POST response: proto: HTTP/2.0 @@ -3442,7 +3442,7 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 160.395ms + duration: 482.339875ms - id: 98 request: proto: HTTP/1.1 @@ -3460,8 +3460,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3477,7 +3477,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.650417ms + duration: 451.17ms - id: 99 request: proto: HTTP/1.1 @@ -3495,8 +3495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -3506,13 +3506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.953041ms + duration: 464.365791ms - id: 100 request: proto: HTTP/1.1 @@ -3530,7 +3530,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3541,13 +3541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.432916ms + duration: 340.649ms - id: 101 request: proto: HTTP/1.1 @@ -3565,8 +3565,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3576,13 +3576,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.366292ms + duration: 389.377291ms - id: 102 request: proto: HTTP/1.1 @@ -3600,8 +3600,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3617,7 +3617,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.037833ms + duration: 447.280167ms - id: 103 request: proto: HTTP/1.1 @@ -3635,8 +3635,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3652,7 +3652,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.455083ms + duration: 497.135875ms - id: 104 request: proto: HTTP/1.1 @@ -3670,8 +3670,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3687,7 +3687,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.982834ms + duration: 335.483ms - id: 105 request: proto: HTTP/1.1 @@ -3705,8 +3705,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3716,13 +3716,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.63775ms + duration: 330.534875ms - id: 106 request: proto: HTTP/1.1 @@ -3740,8 +3740,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3757,7 +3757,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.476375ms + duration: 397.750042ms - id: 107 request: proto: HTTP/1.1 @@ -3775,8 +3775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3784,15 +3784,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.431084ms + duration: 444.223458ms - id: 108 request: proto: HTTP/1.1 @@ -3810,8 +3810,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -3821,13 +3821,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.889792ms + duration: 452.909416ms - id: 109 request: proto: HTTP/1.1 @@ -3845,7 +3845,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3856,13 +3856,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.199208ms + duration: 377.4075ms - id: 110 request: proto: HTTP/1.1 @@ -3880,8 +3880,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -3891,13 +3891,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.448709ms + duration: 411.260417ms - id: 111 request: proto: HTTP/1.1 @@ -3915,8 +3915,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3932,7 +3932,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.796667ms + duration: 344.935ms - id: 112 request: proto: HTTP/1.1 @@ -3950,8 +3950,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3967,7 +3967,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 187.33375ms + duration: 335.164459ms - id: 113 request: proto: HTTP/1.1 @@ -3985,8 +3985,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4002,7 +4002,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.61675ms + duration: 421.898083ms - id: 114 request: proto: HTTP/1.1 @@ -4020,8 +4020,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -4031,13 +4031,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 150.469208ms + duration: 494.289083ms - id: 115 request: proto: HTTP/1.1 @@ -4055,8 +4055,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4072,7 +4072,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.822083ms + duration: 789.054667ms - id: 116 request: proto: HTTP/1.1 @@ -4090,8 +4090,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4099,15 +4099,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.099166ms + duration: 421.011875ms - id: 117 request: proto: HTTP/1.1 @@ -4125,8 +4125,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -4136,13 +4136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.128291ms + duration: 485.347584ms - id: 118 request: proto: HTTP/1.1 @@ -4160,8 +4160,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4177,7 +4177,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.162041ms + duration: 481.954875ms - id: 119 request: proto: HTTP/1.1 @@ -4195,8 +4195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4204,15 +4204,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.368417ms + duration: 502.509708ms - id: 120 request: proto: HTTP/1.1 @@ -4230,8 +4230,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: GET response: proto: HTTP/2.0 @@ -4241,13 +4241,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.827375ms + duration: 431.517833ms - id: 121 request: proto: HTTP/1.1 @@ -4265,7 +4265,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -4276,13 +4276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.956958ms + duration: 391.925792ms - id: 122 request: proto: HTTP/1.1 @@ -4300,8 +4300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -4311,13 +4311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.49875ms + duration: 380.705792ms - id: 123 request: proto: HTTP/1.1 @@ -4335,8 +4335,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4352,7 +4352,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.112584ms + duration: 438.581084ms - id: 124 request: proto: HTTP/1.1 @@ -4370,8 +4370,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4387,7 +4387,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.29275ms + duration: 488.100917ms - id: 125 request: proto: HTTP/1.1 @@ -4405,8 +4405,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4422,7 +4422,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.594042ms + duration: 477.642458ms - id: 126 request: proto: HTTP/1.1 @@ -4440,8 +4440,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: GET response: proto: HTTP/2.0 @@ -4451,13 +4451,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_n1z6LFTpIHVtfM8R","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 191.683917ms + duration: 387.805292ms - id: 127 request: proto: HTTP/1.1 @@ -4475,8 +4475,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4492,7 +4492,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.287375ms + duration: 388.33825ms - id: 128 request: proto: HTTP/1.1 @@ -4510,8 +4510,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/users?include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4519,15 +4519,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 12 uncompressed: false - body: '{"users":[],"start":0,"limit":100,"total":0}' + body: '{"users":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.352791ms + duration: 475.662209ms - id: 129 request: proto: HTTP/1.1 @@ -4546,8 +4546,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: DELETE response: proto: HTTP/2.0 @@ -4563,7 +4563,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 164.367584ms + duration: 416.3945ms - id: 130 request: proto: HTTP/1.1 @@ -4582,8 +4582,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: DELETE response: proto: HTTP/2.0 @@ -4599,7 +4599,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 200.574125ms + duration: 375.556833ms - id: 131 request: proto: HTTP/1.1 @@ -4618,8 +4618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R/permissions method: DELETE response: proto: HTTP/2.0 @@ -4635,7 +4635,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 160.336083ms + duration: 500.40125ms - id: 132 request: proto: HTTP/1.1 @@ -4654,8 +4654,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_n1z6LFTpIHVtfM8R method: DELETE response: proto: HTTP/2.0 @@ -4671,7 +4671,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.977542ms + duration: 384.43075ms - id: 133 request: proto: HTTP/1.1 @@ -4690,7 +4690,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: PATCH response: @@ -4701,13 +4701,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"670d1dfd9cc46957f2ac3cbf","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 215.446167ms + duration: 445.323291ms - id: 134 request: proto: HTTP/1.1 @@ -4725,8 +4725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + - Go-Auth0/1.11.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/670d1dfd9cc46957f2ac3cbf method: DELETE response: proto: HTTP/2.0 @@ -4742,4 +4742,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 196.320833ms + duration: 377.610958ms