diff --git a/docs/data-sources/organization.md b/docs/data-sources/organization.md index 20c484b2a..cdfd86dd7 100644 --- a/docs/data-sources/organization.md +++ b/docs/data-sources/organization.md @@ -36,6 +36,7 @@ data "auth0_organization" "some-organization-by-id" { - `connections` (Set of Object) (see [below for nested schema](#nestedatt--connections)) - `display_name` (String) Friendly name of this organization. - `id` (String) The ID of this resource. +- `members` (Set of String) User ID(s) that are members of the organization. - `metadata` (Map of String) Metadata associated with the organization. Maximum of 10 metadata properties allowed. diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index 49cf5be3a..070485553 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -58,6 +58,15 @@ func dataSourceSchema() map[string]*schema.Schema { }, } + dataSourceSchema["members"] = &schema.Schema{ + Type: schema.TypeSet, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Computed: true, + Description: "User ID(s) that are members of the organization.", + } + return dataSourceSchema } @@ -108,21 +117,23 @@ func readOrganizationForDataSource(_ context.Context, data *schema.ResourceData, data.SetId(foundOrganization.GetID()) - result := multierror.Append( - data.Set("name", foundOrganization.GetName()), - data.Set("display_name", foundOrganization.GetDisplayName()), - data.Set("branding", flattenOrganizationBranding(foundOrganization.GetBranding())), - data.Set("metadata", foundOrganization.GetMetadata()), - ) - foundConnections, err := fetchAllOrganizationConnections(api, foundOrganization.GetID()) if err != nil { return diag.FromErr(err) } - result = multierror.Append( - result, + foundMembers, err := fetchAllOrganizationMembers(api, foundOrganization.GetID()) + if err != nil { + return diag.FromErr(err) + } + + result := multierror.Append( + data.Set("name", foundOrganization.GetName()), + data.Set("display_name", foundOrganization.GetDisplayName()), + data.Set("branding", flattenOrganizationBranding(foundOrganization.GetBranding())), + data.Set("metadata", foundOrganization.GetMetadata()), data.Set("connections", flattenOrganizationConnections(foundConnections)), + data.Set("members", foundMembers), ) return diag.FromErr(result.ErrorOrNil()) @@ -150,6 +161,30 @@ func fetchAllOrganizationConnections(api *management.Management, organizationID return foundConnections, nil } +func fetchAllOrganizationMembers(api *management.Management, organizationID string) ([]string, error) { + foundMembers := make([]string, 0) + var page int + + for { + members, err := api.Organization.Members(organizationID, management.Page(page), management.PerPage(100)) + if err != nil { + return nil, err + } + + for _, member := range members.Members { + foundMembers = append(foundMembers, member.GetUserID()) + } + + if !members.HasNext() { + break + } + + page++ + } + + return foundMembers, nil +} + func flattenOrganizationConnections(connections []*management.OrganizationConnection) []interface{} { if connections == nil { return nil diff --git a/internal/auth0/organization/data_source_test.go b/internal/auth0/organization/data_source_test.go index 9faed3dd5..a27ad0360 100644 --- a/internal/auth0/organization/data_source_test.go +++ b/internal/auth0/organization/data_source_test.go @@ -12,7 +12,15 @@ import ( ) const testAccGivenAnOrganizationWithConnectionsAndMembers = ` +resource "auth0_user" "user" { + connection_name = "Username-Password-Authentication" + email = "{{.testName}}@auth0.com" + password = "MyPass123$" +} + resource "auth0_connection" "my_connection" { + depends_on = [ auth0_user.user ] + name = "Acceptance-Test-Connection-{{.testName}}" strategy = "auth0" } @@ -30,6 +38,13 @@ resource "auth0_organization_connection" "my_org_conn" { organization_id = auth0_organization.my_organization.id connection_id = auth0_connection.my_connection.id } + +resource "auth0_organization_member" "org_member" { + depends_on = [ auth0_organization_connection.my_org_conn ] + + organization_id = auth0_organization.my_organization.id + user_id = auth0_user.user.id +} ` const testAccDataSourceOrganizationConfigByName = testAccGivenAnOrganizationWithConnectionsAndMembers + ` @@ -80,6 +95,7 @@ func TestAccDataSourceOrganizationByName(t *testing.T) { resource.TestCheckResourceAttr("data.auth0_organization.test", "name", fmt.Sprintf("test-%s", testName)), resource.TestCheckResourceAttr("data.auth0_organization.test", "connections.#", "1"), resource.TestCheckResourceAttrSet("data.auth0_organization.test", "connections.0.connection_id"), + resource.TestCheckResourceAttr("data.auth0_organization.test", "members.#", "1"), ), }, }, @@ -110,6 +126,7 @@ func TestAccDataSourceOrganizationByID(t *testing.T) { resource.TestCheckResourceAttr("data.auth0_organization.test", "name", fmt.Sprintf("test-%s", testName)), resource.TestCheckResourceAttr("data.auth0_organization.test", "connections.#", "1"), resource.TestCheckResourceAttrSet("data.auth0_organization.test", "connections.0.connection_id"), + resource.TestCheckResourceAttr("data.auth0_organization.test", "members.#", "1"), ), }, }, diff --git a/internal/auth0/organization/resource_members_test.go b/internal/auth0/organization/resource_members_test.go index 41020303f..9eeeffb1a 100644 --- a/internal/auth0/organization/resource_members_test.go +++ b/internal/auth0/organization/resource_members_test.go @@ -67,6 +67,12 @@ resource "auth0_organization_members" "my_members" { organization_id = auth0_organization.my_org.id members = [ auth0_user.user_1.id ] } + +data "auth0_organization" "my_org_data" { + depends_on = [ auth0_organization_members.my_members ] + + organization_id = auth0_organization.my_org.id +} ` const testAccOrganizationMembersWithTwoMembers = ` @@ -97,6 +103,12 @@ resource "auth0_organization_members" "my_members" { organization_id = auth0_organization.my_org.id members = [ auth0_user.user_1.id, auth0_user.user_2.id ] } + +data "auth0_organization" "my_org_data" { + depends_on = [ auth0_organization_members.my_members ] + + organization_id = auth0_organization.my_org.id +} ` const testAccOrganizationMembersRemoveOneMember = ` @@ -119,6 +131,12 @@ resource "auth0_organization_members" "my_members" { organization_id = auth0_organization.my_org.id members = [ auth0_user.user_2.id ] } + +data "auth0_organization" "my_org_data" { + depends_on = [ auth0_organization_members.my_members ] + + organization_id = auth0_organization.my_org.id +} ` const testAccOrganizationMembersRemoveAllMembers = ` @@ -133,6 +151,25 @@ resource "auth0_organization_members" "my_members" { organization_id = auth0_organization.my_org.id members = [] } + +data "auth0_organization" "my_org_data" { + depends_on = [ auth0_organization_members.my_members ] + + organization_id = auth0_organization.my_org.id +} +` + +const testAccOrganizationMembersDeleteResource = ` +resource "auth0_organization" "my_org" { + name = "some-org-{{.testName}}" + display_name = "{{.testName}}" +} + +data "auth0_organization" "my_org_data" { + depends_on = [ auth0_organization.my_org ] + + organization_id = auth0_organization.my_org.id +} ` func TestAccOrganizationMembers(t *testing.T) { @@ -148,24 +185,37 @@ func TestAccOrganizationMembers(t *testing.T) { Config: acctest.ParseTestName(testAccOrganizationMembersWithOneMember, testName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_organization_members.my_members", "members.#", "1"), + resource.TestCheckResourceAttr("data.auth0_organization.my_org_data", "members.#", "1"), ), }, { Config: acctest.ParseTestName(testAccOrganizationMembersWithTwoMembers, testName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_organization_members.my_members", "members.#", "2"), + resource.TestCheckResourceAttr("data.auth0_organization.my_org_data", "members.#", "2"), ), }, { Config: acctest.ParseTestName(testAccOrganizationMembersRemoveOneMember, testName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_organization_members.my_members", "members.#", "1"), + resource.TestCheckResourceAttr("data.auth0_organization.my_org_data", "members.#", "1"), ), }, { Config: acctest.ParseTestName(testAccOrganizationMembersRemoveAllMembers, testName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_organization_members.my_members", "members.#", "0"), + resource.TestCheckResourceAttr("data.auth0_organization.my_org_data", "members.#", "0"), + ), + }, + { + Config: acctest.ParseTestName(testAccOrganizationMembersDeleteResource, testName), + }, + { + RefreshState: true, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("data.auth0_organization.my_org_data", "members.#", "0"), ), }, }, diff --git a/test/data/recordings/TestAccDataSourceOrganizationByID.yaml b/test/data/recordings/TestAccDataSourceOrganizationByID.yaml index 1a5af0536..6a946b6e0 100644 --- a/test/data/recordings/TestAccDataSourceOrganizationByID.yaml +++ b/test/data/recordings/TestAccDataSourceOrganizationByID.yaml @@ -2,6 +2,150 @@ version: 2 interactions: - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 128 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection":"Username-Password-Authentication","email":"testaccdatasourceorganizationbyid@auth0.com","password":"MyPass123$"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 574 + uncompressed: false + body: '{"created_at":"2023-06-02T13:20:08.090Z","email":"testaccdatasourceorganizationbyid@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88344699633d3ccdb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyid@auth0.com","nickname":"testaccdatasourceorganizationbyid","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.090Z","user_id":"auth0|6479ec88344699633d3ccdb6"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 220.073875ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-02T13:20:08.090Z","email":"testaccdatasourceorganizationbyid@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88344699633d3ccdb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyid@auth0.com","nickname":"testaccdatasourceorganizationbyid","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.090Z","user_id":"auth0|6479ec88344699633d3ccdb6"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 86.747ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 95.138833ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 131.984458ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -13,31 +157,607 @@ interactions: remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"} + {"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 381 + uncompressed: false + body: '{"id":"con_Voz7hyCxCbF6hhbI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 131.089208ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Voz7hyCxCbF6hhbI + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Voz7hyCxCbF6hhbI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 109.355333ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 111 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 138 + uncompressed: false + body: '{"name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid","id":"org_2gH8zD6OIR2ylE60"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 118.115333ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 88.644167ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 76 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 179 + uncompressed: false + body: '{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 127.991417ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections/con_Voz7hyCxCbF6hhbI + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.129166ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|6479ec88344699633d3ccdb6"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 99.459333ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 103.94425ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-02T13:20:08.090Z","email":"testaccdatasourceorganizationbyid@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88344699633d3ccdb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyid@auth0.com","nickname":"testaccdatasourceorganizationbyid","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.090Z","user_id":"auth0|6479ec88344699633d3ccdb6"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.535917ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 80.4385ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 96.179875ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Voz7hyCxCbF6hhbI + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Voz7hyCxCbF6hhbI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 87.811625ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 98.3265ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections/con_Voz7hyCxCbF6hhbI + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 103.3795ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 100.39475ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-02T13:20:08.090Z","email":"testaccdatasourceorganizationbyid@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88344699633d3ccdb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyid@auth0.com","nickname":"testaccdatasourceorganizationbyid","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.090Z","user_id":"auth0|6479ec88344699633d3ccdb6"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 116.249125ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 381 - uncompressed: false - body: '{"id":"con_5N39vOCogDsbhRBq","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 172.333208ms - - id: 1 + status: 200 OK + code: 200 + duration: 86.067833ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -55,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -66,50 +786,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_5N39vOCogDsbhRBq","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 143.973542ms - - id: 2 + duration: 90.701625ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 111 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations - method: POST + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Voz7hyCxCbF6hhbI + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 138 - uncompressed: false - body: '{"name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid","id":"org_K339FKdjfz3X9HYC"}' + content_length: -1 + uncompressed: true + body: '{"id":"con_Voz7hyCxCbF6hhbI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 113.54425ms - - id: 3 + status: 200 OK + code: 200 + duration: 94.261709ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -127,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: GET response: proto: HTTP/2.0 @@ -138,50 +858,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.908667ms - - id: 4 + duration: 100.917917ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 76 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections - method: POST + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 179 - uncompressed: false - body: '{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 148.594292ms - - id: 5 + status: 200 OK + code: 200 + duration: 91.535125ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -199,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections/con_Voz7hyCxCbF6hhbI method: GET response: proto: HTTP/2.0 @@ -210,14 +930,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + body: '{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.1335ms - - id: 6 + duration: 177.308208ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -235,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -246,14 +966,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_5N39vOCogDsbhRBq","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + body: '{"enabled_connections":[{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.242917ms - - id: 7 + duration: 122.9185ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -282,14 +1002,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.011333ms - - id: 8 + duration: 100.614125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -307,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -318,14 +1038,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + body: '{"members":[{"user_id":"auth0|6479ec88344699633d3ccdb6","email":"testaccdatasourceorganizationbyid@auth0.com","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyid@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.25975ms - - id: 9 + duration: 96.954625ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -343,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: GET response: proto: HTTP/2.0 @@ -354,14 +1074,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_5N39vOCogDsbhRBq","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.406167ms - - id: 10 + duration: 99.711334ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -379,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -390,14 +1110,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"enabled_connections":[{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.712375ms - - id: 11 + duration: 101.271834ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -415,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -426,14 +1146,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"members":[{"user_id":"auth0|6479ec88344699633d3ccdb6","email":"testaccdatasourceorganizationbyid@auth0.com","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyid@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.029958ms - - id: 12 + duration: 94.93575ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -451,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: GET response: proto: HTTP/2.0 @@ -462,14 +1182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.1895ms - - id: 13 + duration: 89.78425ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -487,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -498,14 +1218,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.658417ms - - id: 14 + duration: 93.971083ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -523,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -534,14 +1254,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"members":[{"user_id":"auth0|6479ec88344699633d3ccdb6","email":"testaccdatasourceorganizationbyid@auth0.com","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyid@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.208542ms - - id: 15 + duration: 119.554667ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -559,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6 method: GET response: proto: HTTP/2.0 @@ -570,14 +1290,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"created_at":"2023-06-02T13:20:08.090Z","email":"testaccdatasourceorganizationbyid@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88344699633d3ccdb6","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyid@auth0.com","nickname":"testaccdatasourceorganizationbyid","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.090Z","user_id":"auth0|6479ec88344699633d3ccdb6"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.546542ms - - id: 16 + duration: 92.469958ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -595,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -606,14 +1326,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.482541ms - - id: 17 + duration: 104.873334ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -631,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -642,14 +1362,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.073791ms - - id: 18 + duration: 102.306458ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -667,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Voz7hyCxCbF6hhbI method: GET response: proto: HTTP/2.0 @@ -678,14 +1398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_5N39vOCogDsbhRBq","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' + body: '{"id":"con_Voz7hyCxCbF6hhbI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyid"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.283125ms - - id: 19 + duration: 92.57725ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -703,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: GET response: proto: HTTP/2.0 @@ -714,14 +1434,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 73.28775ms - - id: 20 + duration: 92.391583ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -739,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: GET response: proto: HTTP/2.0 @@ -750,14 +1470,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.9835ms - - id: 21 + duration: 92.347708ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -775,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections/con_Voz7hyCxCbF6hhbI method: GET response: proto: HTTP/2.0 @@ -786,14 +1506,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' + body: '{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.134541ms - - id: 22 + duration: 103.718709ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -811,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -822,14 +1542,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 145.535375ms - - id: 23 + duration: 94.648125ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -847,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members/auth0%7C6479ec88344699633d3ccdb6/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -858,14 +1578,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_K339FKdjfz3X9HYC","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.588583ms - - id: 24 + duration: 88.209708ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -883,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -894,14 +1614,158 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_5N39vOCogDsbhRBq","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|6479ec88344699633d3ccdb6","email":"testaccdatasourceorganizationbyid@auth0.com","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyid@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.885958ms - - id: 25 + duration: 95.905333ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 101.368917ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_Voz7hyCxCbF6hhbI","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyid","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 104.394708ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6479ec88344699633d3ccdb6","email":"testaccdatasourceorganizationbyid@auth0.com","picture":"https://s.gravatar.com/avatar/3ccaa541bd568b8bfffee31e332eb2aa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyid@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 92.906125ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|6479ec88344699633d3ccdb6"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 88.273583ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -918,8 +1782,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC/enabled_connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60/enabled_connections/con_Voz7hyCxCbF6hhbI method: DELETE response: proto: HTTP/2.0 @@ -935,8 +1799,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 98.971625ms - - id: 26 + duration: 85.6815ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -953,8 +1817,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_K339FKdjfz3X9HYC + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2gH8zD6OIR2ylE60 method: DELETE response: proto: HTTP/2.0 @@ -970,8 +1834,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 114.405208ms - - id: 27 + duration: 87.370208ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -988,8 +1852,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_5N39vOCogDsbhRBq + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Voz7hyCxCbF6hhbI method: DELETE response: proto: HTTP/2.0 @@ -999,10 +1863,45 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-02-10T15:18:37.420Z"}' + body: '{"deleted_at":"2023-06-02T13:20:15.272Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 143.223083ms + duration: 124.173458ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88344699633d3ccdb6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 116.532333ms diff --git a/test/data/recordings/TestAccDataSourceOrganizationByName.yaml b/test/data/recordings/TestAccDataSourceOrganizationByName.yaml index 98d9446d1..8c58d8ccf 100644 --- a/test/data/recordings/TestAccDataSourceOrganizationByName.yaml +++ b/test/data/recordings/TestAccDataSourceOrganizationByName.yaml @@ -2,6 +2,150 @@ version: 2 interactions: - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection":"Username-Password-Authentication","email":"testaccdatasourceorganizationbyname@auth0.com","password":"MyPass123$"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 580 + uncompressed: false + body: '{"created_at":"2023-06-02T13:20:08.070Z","email":"testaccdatasourceorganizationbyname@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88620b835a45c90cdd","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyname@auth0.com","nickname":"testaccdatasourceorganizationbyname","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.070Z","user_id":"auth0|6479ec88620b835a45c90cdd"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 273.780125ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-02T13:20:08.070Z","email":"testaccdatasourceorganizationbyname@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88620b835a45c90cdd","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyname@auth0.com","nickname":"testaccdatasourceorganizationbyname","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.070Z","user_id":"auth0|6479ec88620b835a45c90cdd"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 82.219667ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 95.299708ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.68775ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -19,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 + - Go-Auth0-SDK/0.17.2 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,14 +174,14 @@ interactions: trailer: {} content_length: 385 uncompressed: false - body: '{"id":"con_TaZac3ujhOCB5DoR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + body: '{"id":"con_oCY2xNixEw2cEg4Y","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 163.242125ms - - id: 1 + duration: 200.959959ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -55,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -66,14 +210,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TaZac3ujhOCB5DoR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + body: '{"id":"con_oCY2xNixEw2cEg4Y","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.41025ms - - id: 2 + duration: 91.000125ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -91,7 +235,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 + - Go-Auth0-SDK/0.17.2 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -102,14 +246,14 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname","id":"org_ITlCxjBnyGj8ZsxO"}' + body: '{"name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname","id":"org_t30fZbPXavlnhsQO"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 125.054ms - - id: 3 + duration: 107.173292ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -127,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO method: GET response: proto: HTTP/2.0 @@ -138,14 +282,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' + body: '{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 219.299875ms - - id: 4 + duration: 92.417833ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -157,14 +301,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false} + {"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections method: POST response: proto: HTTP/2.0 @@ -174,14 +318,14 @@ interactions: trailer: {} content_length: 181 uncompressed: false - body: '{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + body: '{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 134.763917ms - - id: 5 + duration: 99.635416ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -199,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -210,14 +354,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + body: '{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.115917ms - - id: 6 + duration: 109.455625ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|6479ec88620b835a45c90cdd"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 112.813125ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -235,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -246,14 +426,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TaZac3ujhOCB5DoR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.736333ms - - id: 7 + duration: 104.424584ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd method: GET response: proto: HTTP/2.0 @@ -282,14 +462,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' + body: '{"created_at":"2023-06-02T13:20:08.070Z","email":"testaccdatasourceorganizationbyname@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88620b835a45c90cdd","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyname@auth0.com","nickname":"testaccdatasourceorganizationbyname","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.070Z","user_id":"auth0|6479ec88620b835a45c90cdd"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.256917ms - - id: 8 + duration: 128.555542ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -307,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -318,14 +498,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.303416ms - - id: 9 + duration: 104.456292ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -343,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -354,14 +534,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TaZac3ujhOCB5DoR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.357584ms - - id: 10 + duration: 85.469042ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -379,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -390,14 +570,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"organizations":[{"id":"org_3EE9uZhbwdFnOVqj","name":"testing","display_name":"testing"},{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + body: '{"id":"con_oCY2xNixEw2cEg4Y","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.448375ms - - id: 11 + duration: 89.117584ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -415,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO method: GET response: proto: HTTP/2.0 @@ -426,14 +606,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.387166ms - - id: 12 + duration: 86.430333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -451,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -462,14 +642,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' + body: '{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 85.53325ms - - id: 13 + duration: 102.278709ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -487,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -498,14 +678,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.614083ms - - id: 14 + duration: 103.959334ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -523,7 +703,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 + - Go-Auth0-SDK/0.17.2 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 method: GET response: @@ -534,14 +714,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"organizations":[{"id":"org_3EE9uZhbwdFnOVqj","name":"testing","display_name":"testing"},{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + body: '{"organizations":[{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"},{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.194208ms - - id: 15 + duration: 71.642542ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -559,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -570,14 +750,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.6865ms - - id: 16 + duration: 86.012ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -595,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd method: GET response: proto: HTTP/2.0 @@ -606,14 +786,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"organizations":[{"id":"org_3EE9uZhbwdFnOVqj","name":"testing","display_name":"testing"},{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2023-06-02T13:20:08.070Z","email":"testaccdatasourceorganizationbyname@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88620b835a45c90cdd","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyname@auth0.com","nickname":"testaccdatasourceorganizationbyname","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.070Z","user_id":"auth0|6479ec88620b835a45c90cdd"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.320458ms - - id: 17 + duration: 161.015459ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -631,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -642,14 +822,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.069708ms - - id: 18 + duration: 83.791833ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -667,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -678,14 +858,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"organizations":[{"id":"org_3EE9uZhbwdFnOVqj","name":"testing","display_name":"testing"},{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6479ec88620b835a45c90cdd","email":"testaccdatasourceorganizationbyname@auth0.com","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyname@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.673417ms - - id: 19 + duration: 85.20875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -703,8 +883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -714,14 +894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TaZac3ujhOCB5DoR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.84825ms - - id: 20 + duration: 107.771583ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -739,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -750,14 +930,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_oCY2xNixEw2cEg4Y","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.274458ms - - id: 21 + duration: 95.751459ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -775,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO method: GET response: proto: HTTP/2.0 @@ -786,14 +966,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' + body: '{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.7305ms - - id: 22 + duration: 86.036375ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -811,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections/con_oCY2xNixEw2cEg4Y method: GET response: proto: HTTP/2.0 @@ -822,14 +1002,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + body: '{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.382666ms - - id: 23 + duration: 162.329833ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -847,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -858,14 +1038,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"organizations":[{"id":"org_3EE9uZhbwdFnOVqj","name":"testing","display_name":"testing"},{"id":"org_ITlCxjBnyGj8ZsxO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.161958ms - - id: 24 + duration: 106.217541ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -883,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -894,84 +1074,803 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TaZac3ujhOCB5DoR","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"organizations":[{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"},{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.367042ms - - id: 25 + duration: 82.713584ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO/enabled_connections/con_TaZac3ujhOCB5DoR - method: DELETE + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 101.238333ms - - id: 26 + status: 200 OK + code: 200 + duration: 95.784334ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_ITlCxjBnyGj8ZsxO - method: DELETE + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6479ec88620b835a45c90cdd","email":"testaccdatasourceorganizationbyname@auth0.com","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyname@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 111.789667ms - - id: 27 + status: 200 OK + code: 200 + duration: 90.244708ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"organizations":[{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"},{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 98.929792ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 108.062042ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6479ec88620b835a45c90cdd","email":"testaccdatasourceorganizationbyname@auth0.com","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyname@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 99.349833ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-02T13:20:08.070Z","email":"testaccdatasourceorganizationbyname@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6479ec88620b835a45c90cdd","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganizationbyname@auth0.com","nickname":"testaccdatasourceorganizationbyname","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-02T13:20:08.070Z","user_id":"auth0|6479ec88620b835a45c90cdd"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 97.040292ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"organizations":[{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"},{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 102.509833ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 93.20025ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 96.445375ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 81.630541ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6479ec88620b835a45c90cdd","email":"testaccdatasourceorganizationbyname@auth0.com","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyname@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 113.780167ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_oCY2xNixEw2cEg4Y + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_oCY2xNixEw2cEg4Y","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganizationbyname"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.534125ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 84.528583ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections/con_oCY2xNixEw2cEg4Y + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 100.094166ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members/auth0%7C6479ec88620b835a45c90cdd/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 111.131083ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"organizations":[{"id":"org_2gH8zD6OIR2ylE60","name":"test-testaccdatasourceorganizationbyid","display_name":"Acme Inc. testaccdatasourceorganizationbyid"},{"id":"org_t30fZbPXavlnhsQO","name":"test-testaccdatasourceorganizationbyname","display_name":"Acme Inc. testaccdatasourceorganizationbyname"}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 83.008292ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_oCY2xNixEw2cEg4Y","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganizationbyname","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 94.092917ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6479ec88620b835a45c90cdd","email":"testaccdatasourceorganizationbyname@auth0.com","picture":"https://s.gravatar.com/avatar/9029769644b7251be0f155adf2cde2f0?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganizationbyname@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 95.3785ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|6479ec88620b835a45c90cdd"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 97.463208ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO/enabled_connections/con_oCY2xNixEw2cEg4Y + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 84.340125ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_t30fZbPXavlnhsQO + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 110.357375ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_oCY2xNixEw2cEg4Y + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 171.208ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -988,8 +1887,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TaZac3ujhOCB5DoR + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6479ec88620b835a45c90cdd method: DELETE response: proto: HTTP/2.0 @@ -1005,4 +1904,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 158.848833ms + duration: 103.112125ms diff --git a/test/data/recordings/TestAccOrganizationConnections.yaml b/test/data/recordings/TestAccOrganizationConnections.yaml index 0c848935b..b8ef09b13 100644 --- a/test/data/recordings/TestAccOrganizationConnections.yaml +++ b/test/data/recordings/TestAccOrganizationConnections.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 131 uncompressed: false - body: '{"name":"test-1-testaccorganizationconnections","id":"org_EWGssghZC8XaEkay","display_name":"test-1-testaccorganizationconnections"}' + body: '{"name":"test-1-testaccorganizationconnections","id":"org_DEmg6lfjzPUDttrw","display_name":"test-1-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 108.855167ms + duration: 110.011833ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_EWGssghZC8XaEkay","name":"test-1-testaccorganizationconnections","display_name":"test-1-testaccorganizationconnections"}' + body: '{"id":"org_DEmg6lfjzPUDttrw","name":"test-1-testaccorganizationconnections","display_name":"test-1-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 213.458375ms + duration: 104.607958ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 379 uncompressed: false - body: '{"id":"con_ptoxnpg8tgJGtajv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_LldIlAwaScxVviCB","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 155.498375ms + duration: 154.358833ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ptoxnpg8tgJGtajv + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LldIlAwaScxVviCB method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ptoxnpg8tgJGtajv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_LldIlAwaScxVviCB","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.718417ms + duration: 131.959541ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 379 uncompressed: false - body: '{"id":"con_w1XOjeURrqbPMHbH","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_EmebjJzTejAx2g3W","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 115.495792ms + duration: 152.572834ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_w1XOjeURrqbPMHbH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_EmebjJzTejAx2g3W method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_w1XOjeURrqbPMHbH","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_EmebjJzTejAx2g3W","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.603875ms + duration: 163.549167ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_ptoxnpg8tgJGtajv","assign_membership_on_login":false} + {"connection_id":"con_LldIlAwaScxVviCB","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw/enabled_connections method: POST response: proto: HTTP/2.0 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 178 uncompressed: false - body: '{"connection_id":"con_ptoxnpg8tgJGtajv","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_LldIlAwaScxVviCB","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 106.069958ms + duration: 112.918208ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay/enabled_connections/con_ptoxnpg8tgJGtajv + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw/enabled_connections/con_LldIlAwaScxVviCB method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ptoxnpg8tgJGtajv","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_LldIlAwaScxVviCB","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.006625ms + duration: 98.9675ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ptoxnpg8tgJGtajv","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_LldIlAwaScxVviCB","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.373417ms + duration: 110.669542ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_EmebjJzTejAx2g3W method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_EWGssghZC8XaEkay","name":"test-1-testaccorganizationconnections","display_name":"test-1-testaccorganizationconnections"}' + body: '{"id":"con_EmebjJzTejAx2g3W","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.621416ms + duration: 106.362291ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ptoxnpg8tgJGtajv + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LldIlAwaScxVviCB method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ptoxnpg8tgJGtajv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_LldIlAwaScxVviCB","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.49125ms + duration: 106.340375ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay/enabled_connections/con_ptoxnpg8tgJGtajv + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ptoxnpg8tgJGtajv","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_DEmg6lfjzPUDttrw","name":"test-1-testaccorganizationconnections","display_name":"test-1-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.177583ms + duration: 107.785458ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_w1XOjeURrqbPMHbH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw/enabled_connections/con_LldIlAwaScxVviCB method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_w1XOjeURrqbPMHbH","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"connection_id":"con_LldIlAwaScxVviCB","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.38125ms + duration: 107.716875ms - id: 13 request: proto: HTTP/1.1 @@ -487,7 +487,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay/enabled_connections/con_ptoxnpg8tgJGtajv + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw/enabled_connections/con_LldIlAwaScxVviCB method: DELETE response: proto: HTTP/2.0 @@ -503,7 +503,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 94.573833ms + duration: 93.402292ms - id: 14 request: proto: HTTP/1.1 @@ -533,13 +533,13 @@ interactions: trailer: {} content_length: 132 uncompressed: false - body: '{"name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections","id":"org_13SdjqaWnIjLfVe6"}' + body: '{"name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections","id":"org_VdtFouyxGIXSpoOY"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 103.296417ms + duration: 100.189ms - id: 15 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -569,13 +569,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.48925ms + duration: 92.345334ms - id: 16 request: proto: HTTP/1.1 @@ -594,7 +594,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_w1XOjeURrqbPMHbH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_EmebjJzTejAx2g3W method: DELETE response: proto: HTTP/2.0 @@ -604,13 +604,13 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-06-01T10:53:53.899Z"}' + body: '{"deleted_at":"2023-06-02T13:41:14.385Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 145.468042ms + duration: 191.341917ms - id: 17 request: proto: HTTP/1.1 @@ -640,155 +640,155 @@ interactions: trailer: {} content_length: 367 uncompressed: false - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 109.602458ms + duration: 126.439917ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ptoxnpg8tgJGtajv - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 147.49975ms + status: 200 OK + code: 200 + duration: 104.126459ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LldIlAwaScxVviCB + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2023-06-02T13:41:14.613Z"}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 108.759209ms + status: 202 Accepted + code: 202 + duration: 184.5365ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EWGssghZC8XaEkay - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 91.256208ms + status: 200 OK + code: 200 + duration: 99.948208ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_DEmg6lfjzPUDttrw + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 94.307084ms + status: 204 No Content + code: 204 + duration: 89.510541ms - id: 22 request: proto: HTTP/1.1 @@ -801,14 +801,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_R6lHMkhPGIld5pKs"} + {"connection_id":"con_MZE8VWwtye5e20d3"} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections method: POST response: proto: HTTP/2.0 @@ -818,13 +818,13 @@ interactions: trailer: {} content_length: 172 uncompressed: false - body: '{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 171.41075ms + duration: 104.394875ms - id: 23 request: proto: HTTP/1.1 @@ -844,7 +844,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -854,13 +854,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.241667ms + duration: 95.117042ms - id: 24 request: proto: HTTP/1.1 @@ -880,7 +880,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -890,13 +890,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.036375ms + duration: 94.423875ms - id: 25 request: proto: HTTP/1.1 @@ -916,7 +916,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -926,13 +926,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.64775ms + duration: 104.778667ms - id: 26 request: proto: HTTP/1.1 @@ -952,7 +952,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -962,13 +962,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.704167ms + duration: 98.256625ms - id: 27 request: proto: HTTP/1.1 @@ -988,7 +988,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -998,13 +998,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.394375ms + duration: 93.318458ms - id: 28 request: proto: HTTP/1.1 @@ -1024,7 +1024,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1034,13 +1034,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.137459ms + duration: 105.2715ms - id: 29 request: proto: HTTP/1.1 @@ -1060,7 +1060,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1070,13 +1070,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.373791ms + duration: 90.955125ms - id: 30 request: proto: HTTP/1.1 @@ -1096,7 +1096,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1106,13 +1106,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.096667ms + duration: 124.083541ms - id: 31 request: proto: HTTP/1.1 @@ -1132,7 +1132,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -1142,13 +1142,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.392542ms + duration: 109.482542ms - id: 32 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1178,13 +1178,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.717959ms + duration: 96.903708ms - id: 33 request: proto: HTTP/1.1 @@ -1204,7 +1204,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1214,13 +1214,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.787625ms + duration: 116.127958ms - id: 34 request: proto: HTTP/1.1 @@ -1240,7 +1240,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1250,13 +1250,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.610708ms + duration: 99.328ms - id: 35 request: proto: HTTP/1.1 @@ -1276,7 +1276,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1286,13 +1286,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.182417ms + duration: 100.509416ms - id: 36 request: proto: HTTP/1.1 @@ -1312,7 +1312,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1322,13 +1322,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.588458ms + duration: 101.618167ms - id: 37 request: proto: HTTP/1.1 @@ -1348,7 +1348,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1358,13 +1358,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.352292ms + duration: 89.546666ms - id: 38 request: proto: HTTP/1.1 @@ -1384,7 +1384,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1394,13 +1394,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.29475ms + duration: 137.635459ms - id: 39 request: proto: HTTP/1.1 @@ -1420,7 +1420,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1430,13 +1430,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.363417ms + duration: 91.970791ms - id: 40 request: proto: HTTP/1.1 @@ -1456,7 +1456,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -1466,13 +1466,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.696125ms + duration: 99.694917ms - id: 41 request: proto: HTTP/1.1 @@ -1492,7 +1492,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1502,13 +1502,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.926875ms + duration: 117.281917ms - id: 42 request: proto: HTTP/1.1 @@ -1528,7 +1528,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1538,13 +1538,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.382833ms + duration: 86.052666ms - id: 43 request: proto: HTTP/1.1 @@ -1564,7 +1564,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1574,13 +1574,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.226875ms + duration: 101.462291ms - id: 44 request: proto: HTTP/1.1 @@ -1600,7 +1600,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1610,49 +1610,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.208166ms + duration: 110.384ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 84 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 - uncompressed: false - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 177.527791ms + status: 200 OK + code: 200 + duration: 114.887584ms - id: 46 request: proto: HTTP/1.1 @@ -1672,7 +1672,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1682,49 +1682,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.9315ms + duration: 126.8895ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 76 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 - uncompressed: false - body: '{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 178.361917ms + status: 200 OK + code: 200 + duration: 91.304666ms - id: 48 request: proto: HTTP/1.1 @@ -1744,7 +1744,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -1754,13 +1754,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.098ms + duration: 90.801667ms - id: 49 request: proto: HTTP/1.1 @@ -1780,7 +1780,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -1790,13 +1790,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.818416ms + duration: 117.337167ms - id: 50 request: proto: HTTP/1.1 @@ -1816,7 +1816,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1826,49 +1826,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.453208ms + duration: 104.328459ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 84 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + content_length: 367 + uncompressed: false + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 109.665166ms + status: 201 Created + code: 201 + duration: 118.364625ms - id: 52 request: proto: HTTP/1.1 @@ -1888,7 +1888,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -1898,49 +1898,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.565125ms + duration: 100.235625ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 76 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + content_length: 172 + uncompressed: false + body: '{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 80.306ms + status: 201 Created + code: 201 + duration: 94.126166ms - id: 54 request: proto: HTTP/1.1 @@ -1960,7 +1960,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1970,13 +1970,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 81.53475ms + duration: 172.733875ms - id: 55 request: proto: HTTP/1.1 @@ -1996,7 +1996,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2006,13 +2006,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.179833ms + duration: 90.252625ms - id: 56 request: proto: HTTP/1.1 @@ -2032,7 +2032,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2042,13 +2042,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.092375ms + duration: 183.217708ms - id: 57 request: proto: HTTP/1.1 @@ -2068,7 +2068,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2078,13 +2078,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.630167ms + duration: 101.502458ms - id: 58 request: proto: HTTP/1.1 @@ -2104,7 +2104,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2114,13 +2114,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.129542ms + duration: 87.491292ms - id: 59 request: proto: HTTP/1.1 @@ -2140,7 +2140,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2150,13 +2150,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.738167ms + duration: 103.437875ms - id: 60 request: proto: HTTP/1.1 @@ -2176,7 +2176,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2186,13 +2186,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.426083ms + duration: 159.878ms - id: 61 request: proto: HTTP/1.1 @@ -2212,7 +2212,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2222,13 +2222,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.038542ms + duration: 86.93325ms - id: 62 request: proto: HTTP/1.1 @@ -2248,7 +2248,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -2258,13 +2258,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.362458ms + duration: 113.710917ms - id: 63 request: proto: HTTP/1.1 @@ -2284,7 +2284,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -2294,13 +2294,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 80.599958ms + duration: 98.363875ms - id: 64 request: proto: HTTP/1.1 @@ -2320,7 +2320,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2330,13 +2330,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.166917ms + duration: 109.396625ms - id: 65 request: proto: HTTP/1.1 @@ -2356,7 +2356,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2366,13 +2366,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 86.38975ms + duration: 115.158291ms - id: 66 request: proto: HTTP/1.1 @@ -2392,7 +2392,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2402,13 +2402,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 86.953375ms + duration: 386.92375ms - id: 67 request: proto: HTTP/1.1 @@ -2428,7 +2428,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2438,13 +2438,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.750042ms + duration: 122.997375ms - id: 68 request: proto: HTTP/1.1 @@ -2464,7 +2464,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2474,13 +2474,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.675583ms + duration: 120.891459ms - id: 69 request: proto: HTTP/1.1 @@ -2500,7 +2500,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2510,13 +2510,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.825667ms + duration: 129.55925ms - id: 70 request: proto: HTTP/1.1 @@ -2536,7 +2536,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2546,13 +2546,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.315792ms + duration: 105.60625ms - id: 71 request: proto: HTTP/1.1 @@ -2572,7 +2572,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2582,13 +2582,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.152791ms + duration: 92.411708ms - id: 72 request: proto: HTTP/1.1 @@ -2608,7 +2608,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -2618,155 +2618,157 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.436292ms + duration: 114.453208ms - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections/con_ewzG2dojogOiFZJp - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 87.135333ms + status: 200 OK + code: 200 + duration: 100.029458ms - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections/con_R6lHMkhPGIld5pKs - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 109.297917ms + status: 200 OK + code: 200 + duration: 210.148208ms - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 171 - uncompressed: false - body: '{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 102.902417ms + status: 200 OK + code: 200 + duration: 82.982292ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 171 - uncompressed: false - body: '{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 151.275292ms + status: 200 OK + code: 200 + duration: 181.782916ms - id: 77 request: proto: HTTP/1.1 @@ -2786,7 +2788,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2796,13 +2798,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.839709ms + duration: 153.992167ms - id: 78 request: proto: HTTP/1.1 @@ -2822,7 +2824,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2832,13 +2834,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.213584ms + duration: 117.504583ms - id: 79 request: proto: HTTP/1.1 @@ -2858,7 +2860,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2868,13 +2870,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.306333ms + duration: 107.920542ms - id: 80 request: proto: HTTP/1.1 @@ -2894,7 +2896,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2904,13 +2906,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.055375ms + duration: 99.570042ms - id: 81 request: proto: HTTP/1.1 @@ -2930,7 +2932,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -2940,13 +2942,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.6665ms + duration: 91.795916ms - id: 82 request: proto: HTTP/1.1 @@ -2966,7 +2968,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -2976,13 +2978,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 191.38625ms + duration: 98.280291ms - id: 83 request: proto: HTTP/1.1 @@ -3002,7 +3004,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -3012,13 +3014,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.438125ms + duration: 99.056125ms - id: 84 request: proto: HTTP/1.1 @@ -3038,7 +3040,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3048,157 +3050,155 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.659ms + duration: 104.338958ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections/con_zkKZ9fsHr2qE6DSl + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 126.160542ms + status: 204 No Content + code: 204 + duration: 95.029958ms - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections/con_MZE8VWwtye5e20d3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 97.262042ms + status: 204 No Content + code: 204 + duration: 85.135708ms - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 75 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + content_length: 171 + uncompressed: false + body: '{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 95.761708ms + status: 201 Created + code: 201 + duration: 102.315375ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 75 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + content_length: 171 + uncompressed: false + body: '{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 96.573ms + status: 201 Created + code: 201 + duration: 102.829625ms - id: 89 request: proto: HTTP/1.1 @@ -3218,7 +3218,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3228,13 +3228,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.334834ms + duration: 95.279333ms - id: 90 request: proto: HTTP/1.1 @@ -3254,7 +3254,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3264,13 +3264,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.138167ms + duration: 89.534167ms - id: 91 request: proto: HTTP/1.1 @@ -3290,7 +3290,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3300,13 +3300,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.134875ms + duration: 111.37875ms - id: 92 request: proto: HTTP/1.1 @@ -3326,7 +3326,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3336,13 +3336,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.778708ms + duration: 89.777542ms - id: 93 request: proto: HTTP/1.1 @@ -3362,7 +3362,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3372,13 +3372,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.156667ms + duration: 95.458125ms - id: 94 request: proto: HTTP/1.1 @@ -3398,7 +3398,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3408,13 +3408,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.184459ms + duration: 122.396333ms - id: 95 request: proto: HTTP/1.1 @@ -3434,7 +3434,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3444,13 +3444,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.939167ms + duration: 97.062042ms - id: 96 request: proto: HTTP/1.1 @@ -3470,7 +3470,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3480,13 +3480,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.795542ms + duration: 98.421ms - id: 97 request: proto: HTTP/1.1 @@ -3506,7 +3506,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -3516,13 +3516,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.610125ms + duration: 100.108458ms - id: 98 request: proto: HTTP/1.1 @@ -3542,7 +3542,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -3552,13 +3552,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 79.120583ms + duration: 119.30175ms - id: 99 request: proto: HTTP/1.1 @@ -3578,7 +3578,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3588,13 +3588,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_R6lHMkhPGIld5pKs","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.917083ms + duration: 165.504917ms - id: 100 request: proto: HTTP/1.1 @@ -3614,7 +3614,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3624,13 +3624,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 83.317459ms + duration: 86.092416ms - id: 101 request: proto: HTTP/1.1 @@ -3650,7 +3650,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3660,83 +3660,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_R6lHMkhPGIld5pKs","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.396ms + duration: 85.40275ms - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_R6lHMkhPGIld5pKs - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 41 - uncompressed: false - body: '{"deleted_at":"2023-06-01T10:54:10.434Z"}' + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 127.39825ms + status: 200 OK + code: 200 + duration: 169.6485ms - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" - form: {} + body: | + null + form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections/con_R6lHMkhPGIld5pKs - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 109.465416ms + status: 200 OK + code: 200 + duration: 107.504542ms - id: 104 request: proto: HTTP/1.1 @@ -3756,7 +3758,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3766,13 +3768,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.153375ms + duration: 108.327166ms - id: 105 request: proto: HTTP/1.1 @@ -3792,7 +3794,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3802,13 +3804,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.147542ms + duration: 118.811166ms - id: 106 request: proto: HTTP/1.1 @@ -3828,7 +3830,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3838,13 +3840,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.742875ms + duration: 105.651ms - id: 107 request: proto: HTTP/1.1 @@ -3864,7 +3866,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -3874,13 +3876,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.117667ms + duration: 95.16425ms - id: 108 request: proto: HTTP/1.1 @@ -3900,7 +3902,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -3910,13 +3912,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.395916ms + duration: 164.012375ms - id: 109 request: proto: HTTP/1.1 @@ -3936,7 +3938,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3946,13 +3948,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.637041ms + duration: 116.816584ms - id: 110 request: proto: HTTP/1.1 @@ -3972,7 +3974,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -3982,13 +3984,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.266042ms + duration: 84.650042ms - id: 111 request: proto: HTTP/1.1 @@ -4008,7 +4010,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4018,13 +4020,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.937292ms + duration: 120.371083ms - id: 112 request: proto: HTTP/1.1 @@ -4044,7 +4046,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4054,13 +4056,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.459208ms + duration: 94.338875ms - id: 113 request: proto: HTTP/1.1 @@ -4080,7 +4082,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4090,13 +4092,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.20675ms + duration: 89.48725ms - id: 114 request: proto: HTTP/1.1 @@ -4116,7 +4118,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4126,13 +4128,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 81.639084ms + duration: 98.235917ms - id: 115 request: proto: HTTP/1.1 @@ -4152,7 +4154,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4162,13 +4164,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.537709ms + duration: 97.0485ms - id: 116 request: proto: HTTP/1.1 @@ -4188,7 +4190,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 method: GET response: proto: HTTP/2.0 @@ -4198,13 +4200,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_MZE8VWwtye5e20d3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.871958ms + duration: 87.79525ms - id: 117 request: proto: HTTP/1.1 @@ -4224,7 +4226,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4234,13 +4236,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.254958ms + duration: 92.884833ms - id: 118 request: proto: HTTP/1.1 @@ -4260,7 +4262,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -4270,13 +4272,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.945125ms + duration: 92.941458ms - id: 119 request: proto: HTTP/1.1 @@ -4296,7 +4298,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4306,85 +4308,83 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_MZE8VWwtye5e20d3","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-1-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.95975ms + duration: 96.095291ms - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_MZE8VWwtye5e20d3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2023-06-02T13:41:32.718Z"}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 105.550125ms + status: 202 Accepted + code: 202 + duration: 182.888833ms - id: 121 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections/con_MZE8VWwtye5e20d3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 93.227958ms + status: 204 No Content + code: 204 + duration: 161.857958ms - id: 122 request: proto: HTTP/1.1 @@ -4404,7 +4404,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4414,13 +4414,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.667084ms + duration: 91.245875ms - id: 123 request: proto: HTTP/1.1 @@ -4440,7 +4440,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4450,13 +4450,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.068875ms + duration: 84.136375ms - id: 124 request: proto: HTTP/1.1 @@ -4476,7 +4476,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4486,13 +4486,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.248ms + duration: 93.304916ms - id: 125 request: proto: HTTP/1.1 @@ -4512,7 +4512,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4522,13 +4522,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ewzG2dojogOiFZJp","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.463833ms + duration: 96.43675ms - id: 126 request: proto: HTTP/1.1 @@ -4548,7 +4548,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4558,13 +4558,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.231625ms + duration: 92.831459ms - id: 127 request: proto: HTTP/1.1 @@ -4584,7 +4584,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4594,13 +4594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.339541ms + duration: 170.290833ms - id: 128 request: proto: HTTP/1.1 @@ -4620,7 +4620,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4630,13 +4630,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.997333ms + duration: 100.37625ms - id: 129 request: proto: HTTP/1.1 @@ -4656,7 +4656,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4666,83 +4666,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ewzG2dojogOiFZJp","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.527125ms + duration: 73.633958ms - id: 130 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections/con_ewzG2dojogOiFZJp - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 96.467167ms + status: 200 OK + code: 200 + duration: 102.088542ms - id: 131 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ewzG2dojogOiFZJp - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 167.813958ms + status: 200 OK + code: 200 + duration: 93.105042ms - id: 132 request: proto: HTTP/1.1 @@ -4762,7 +4764,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4772,13 +4774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.14975ms + duration: 104.606125ms - id: 133 request: proto: HTTP/1.1 @@ -4798,7 +4800,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4808,13 +4810,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.128625ms + duration: 92.253042ms - id: 134 request: proto: HTTP/1.1 @@ -4834,7 +4836,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4844,13 +4846,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.926583ms + duration: 98.844042ms - id: 135 request: proto: HTTP/1.1 @@ -4870,7 +4872,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4880,13 +4882,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.965083ms + duration: 108.70225ms - id: 136 request: proto: HTTP/1.1 @@ -4906,7 +4908,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4916,13 +4918,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.641375ms + duration: 107.488125ms - id: 137 request: proto: HTTP/1.1 @@ -4942,7 +4944,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4952,13 +4954,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.429208ms + duration: 87.217375ms - id: 138 request: proto: HTTP/1.1 @@ -4978,7 +4980,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -4988,13 +4990,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 84.898ms + duration: 98.656291ms - id: 139 request: proto: HTTP/1.1 @@ -5014,7 +5016,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl method: GET response: proto: HTTP/2.0 @@ -5024,13 +5026,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.733167ms + duration: 93.444792ms - id: 140 request: proto: HTTP/1.1 @@ -5050,7 +5052,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5060,13 +5062,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.981625ms + duration: 93.426625ms - id: 141 request: proto: HTTP/1.1 @@ -5086,7 +5088,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: GET response: proto: HTTP/2.0 @@ -5096,13 +5098,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.3155ms + duration: 89.759125ms - id: 142 request: proto: HTTP/1.1 @@ -5122,7 +5124,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5132,13 +5134,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_13SdjqaWnIjLfVe6","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.394125ms + duration: 104.763625ms - id: 143 request: proto: HTTP/1.1 @@ -5158,7 +5160,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5168,14 +5170,1128 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 189.232208ms + duration: 118.126791ms - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 91.315875ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 108.999917ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 101.391375ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 98.305958ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 99.271958ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_zkKZ9fsHr2qE6DSl","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Conn-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Conn-2-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 113.761167ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 100.2135ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.065292ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 218.800709ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 99.025042ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_zkKZ9fsHr2qE6DSl","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Conn-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.494041ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 112.682667ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections/con_zkKZ9fsHr2qE6DSl + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 106.237084ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_zkKZ9fsHr2qE6DSl + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2023-06-02T13:41:39.075Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 257.02975ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 96.089708ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 97.508916ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 109.149042ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 95.594625ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 102.806083ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 191.206833ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 126.213959ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 83.848ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 87.850416ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 94.62625ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 95.570625ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 87.38225ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 113.554292ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 109.143333ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_VdtFouyxGIXSpoOY","name":"test-testaccorganizationconnections","display_name":"Acme Inc. testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 91.030416ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 171.561334ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 93.915041ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -5193,7 +6309,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_13SdjqaWnIjLfVe6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_VdtFouyxGIXSpoOY method: DELETE response: proto: HTTP/2.0 @@ -5209,4 +6325,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 85.334ms + duration: 93.998375ms diff --git a/test/data/recordings/TestAccOrganizationMembers.yaml b/test/data/recordings/TestAccOrganizationMembers.yaml index a4935c6b6..e16f1a66a 100644 --- a/test/data/recordings/TestAccOrganizationMembers.yaml +++ b/test/data/recordings/TestAccOrganizationMembers.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 556 uncompressed: false - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 333.555667ms + duration: 338.248625ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.145791ms + duration: 109.713ms - id: 2 request: proto: HTTP/1.1 @@ -92,7 +92,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -108,7 +108,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.753333ms + duration: 116.704084ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -144,7 +144,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.056542ms + duration: 168.895875ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 556 uncompressed: false - body: '{"created_at":"2023-06-07T07:05:24.322Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c34e1d6b58df37b4308","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:24.322Z","user_id":"auth0|64802c34e1d6b58df37b4308"}' + body: '{"created_at":"2023-06-07T07:20:13.411Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fadb2bd507366946a51","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:13.411Z","user_id":"auth0|64802fadb2bd507366946a51"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 291.317917ms + duration: 317.467375ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:24.322Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c34e1d6b58df37b4308","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:24.322Z","user_id":"auth0|64802c34e1d6b58df37b4308"}' + body: '{"created_at":"2023-06-07T07:20:13.411Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fadb2bd507366946a51","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:13.411Z","user_id":"auth0|64802fadb2bd507366946a51"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.344667ms + duration: 87.896084ms - id: 6 request: proto: HTTP/1.1 @@ -236,7 +236,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -252,7 +252,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.297584ms + duration: 190.628167ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -288,7 +288,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.433208ms + duration: 85.775708ms - id: 8 request: proto: HTTP/1.1 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: 118 uncompressed: false - body: '{"name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers","id":"org_Sf70E4wlTbc3Cy9t"}' + body: '{"name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers","id":"org_Bv2TwOBmtYUTEJzv"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 184.691791ms + duration: 181.979958ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.502625ms + duration: 87.742708ms - id: 10 request: proto: HTTP/1.1 @@ -373,14 +373,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c339eb98995744278bb"]} + {"members":["auth0|64802facadfdd3a17a309cce"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members method: POST response: proto: HTTP/2.0 @@ -396,7 +396,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 90.779917ms + duration: 203.50925ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -432,7 +432,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 187.095208ms + duration: 166.953208ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.913375ms + duration: 86.803625ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.5825ms + duration: 98.954208ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:24.322Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c34e1d6b58df37b4308","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:24.322Z","user_id":"auth0|64802c34e1d6b58df37b4308"}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.355709ms + duration: 188.235708ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51 method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"created_at":"2023-06-07T07:20:13.411Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fadb2bd507366946a51","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:13.411Z","user_id":"auth0|64802fadb2bd507366946a51"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.331208ms + duration: 200.257042ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -612,7 +612,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.654875ms + duration: 197.289417ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -648,7 +648,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 79.766208ms + duration: 222.515791ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.646917ms + duration: 190.14675ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -720,7 +720,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.4295ms + duration: 191.439916ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.635292ms + duration: 175.689708ms - id: 21 request: proto: HTTP/1.1 @@ -769,14 +769,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c339eb98995744278bb"]} + {"members":["auth0|64802facadfdd3a17a309cce"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members method: DELETE response: proto: HTTP/2.0 @@ -792,7 +792,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 165.74025ms + duration: 186.009583ms - id: 22 request: proto: HTTP/1.1 @@ -811,7 +811,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c34e1d6b58df37b4308 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fadb2bd507366946a51 method: DELETE response: proto: HTTP/2.0 @@ -827,7 +827,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 121.90475ms + duration: 128.694375ms - id: 23 request: proto: HTTP/1.1 @@ -847,7 +847,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -863,7 +863,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.554125ms + duration: 174.44275ms - id: 24 request: proto: HTTP/1.1 @@ -876,14 +876,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c339eb98995744278bb"]} + {"members":["auth0|64802facadfdd3a17a309cce"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members method: POST response: proto: HTTP/2.0 @@ -899,7 +899,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 90.132208ms + duration: 92.775625ms - id: 25 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -929,13 +929,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.951375ms + duration: 88.807208ms - id: 26 request: proto: HTTP/1.1 @@ -955,7 +955,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -965,13 +965,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 80.748125ms + duration: 89.528541ms - id: 27 request: proto: HTTP/1.1 @@ -991,7 +991,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1001,13 +1001,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 187.661208ms + duration: 179.624625ms - id: 28 request: proto: HTTP/1.1 @@ -1027,7 +1027,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1037,13 +1037,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.645958ms + duration: 158.629292ms - id: 29 request: proto: HTTP/1.1 @@ -1063,7 +1063,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -1073,13 +1073,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.333792ms + duration: 96.5025ms - id: 30 request: proto: HTTP/1.1 @@ -1099,7 +1099,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1109,13 +1109,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.818708ms + duration: 151.859125ms - id: 31 request: proto: HTTP/1.1 @@ -1135,7 +1135,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1145,13 +1145,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.160292ms + duration: 172.40175ms - id: 32 request: proto: HTTP/1.1 @@ -1171,7 +1171,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -1181,13 +1181,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.742917ms + duration: 160.033292ms - id: 33 request: proto: HTTP/1.1 @@ -1207,7 +1207,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1217,13 +1217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.523916ms + duration: 167.170917ms - id: 34 request: proto: HTTP/1.1 @@ -1243,7 +1243,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1253,13 +1253,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.442042ms + duration: 163.8775ms - id: 35 request: proto: HTTP/1.1 @@ -1279,7 +1279,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -1289,49 +1289,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.256416ms + duration: 76.385667ms - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 122 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection":"Username-Password-Authentication","email":"testaccorganizationmembers2@auth0.com","password":"MyPass123$"} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 - uncompressed: false - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 364.080167ms + status: 200 OK + code: 200 + duration: 166.858875ms - id: 37 request: proto: HTTP/1.1 @@ -1351,7 +1351,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -1361,13 +1361,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.09025ms + duration: 184.275291ms - id: 38 request: proto: HTTP/1.1 @@ -1387,7 +1387,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1397,13 +1397,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.85425ms + duration: 165.694167ms - id: 39 request: proto: HTTP/1.1 @@ -1423,7 +1423,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1433,49 +1433,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.528709ms + duration: 170.728959ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c3ab2bd50736694679f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 104.7095ms + status: 200 OK + code: 200 + duration: 155.432375ms - id: 41 request: proto: HTTP/1.1 @@ -1495,7 +1495,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1505,13 +1505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.831292ms + duration: 173.946584ms - id: 42 request: proto: HTTP/1.1 @@ -1531,7 +1531,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1541,13 +1541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.924541ms + duration: 185.722916ms - id: 43 request: proto: HTTP/1.1 @@ -1567,7 +1567,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -1577,13 +1577,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.481958ms + duration: 82.016333ms - id: 44 request: proto: HTTP/1.1 @@ -1603,7 +1603,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1613,13 +1613,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.678625ms + duration: 174.85825ms - id: 45 request: proto: HTTP/1.1 @@ -1639,7 +1639,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1649,13 +1649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.826333ms + duration: 87.682375ms - id: 46 request: proto: HTTP/1.1 @@ -1675,7 +1675,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -1685,13 +1685,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.590042ms + duration: 162.294416ms - id: 47 request: proto: HTTP/1.1 @@ -1711,7 +1711,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1721,49 +1721,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.012208ms + duration: 158.767542ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 122 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"connection":"Username-Password-Authentication","email":"testaccorganizationmembers2@auth0.com","password":"MyPass123$"} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 556 + uncompressed: false + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 169.304667ms + status: 201 Created + code: 201 + duration: 347.3945ms - id: 49 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 method: GET response: proto: HTTP/2.0 @@ -1793,13 +1793,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 188.113583ms + duration: 78.884709ms - id: 50 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1829,13 +1829,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.290625ms + duration: 158.731791ms - id: 51 request: proto: HTTP/1.1 @@ -1855,7 +1855,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1865,49 +1865,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:23.556Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c339eb98995744278bb","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:23.556Z","user_id":"auth0|64802c339eb98995744278bb"}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.475958ms + duration: 75.972875ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|64802fb6f3e44861fb349804"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/roles?include_totals=true&per_page=50 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 188.822042ms + status: 204 No Content + code: 204 + duration: 181.051458ms - id: 53 request: proto: HTTP/1.1 @@ -1927,7 +1927,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1937,13 +1937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 192.093ms + duration: 176.546375ms - id: 54 request: proto: HTTP/1.1 @@ -1963,7 +1963,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -1973,13 +1973,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.296541ms + duration: 195.410292ms - id: 55 request: proto: HTTP/1.1 @@ -1999,7 +1999,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2009,13 +2009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.3535ms + duration: 167.257334ms - id: 56 request: proto: HTTP/1.1 @@ -2035,7 +2035,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2045,13 +2045,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.595417ms + duration: 83.76875ms - id: 57 request: proto: HTTP/1.1 @@ -2071,7 +2071,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -2081,84 +2081,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802c339eb98995744278bb","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.493667ms + duration: 82.624417ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c339eb98995744278bb - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 125.933333ms + status: 200 OK + code: 200 + duration: 162.21325ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c339eb98995744278bb"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 171.549709ms + status: 200 OK + code: 200 + duration: 160.5445ms - id: 60 request: proto: HTTP/1.1 @@ -2178,7 +2179,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -2188,13 +2189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.514584ms + duration: 171.543792ms - id: 61 request: proto: HTTP/1.1 @@ -2214,7 +2215,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2224,13 +2225,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 183.809833ms + duration: 174.637208ms - id: 62 request: proto: HTTP/1.1 @@ -2250,7 +2251,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2260,13 +2261,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.738083ms + duration: 170.939458ms - id: 63 request: proto: HTTP/1.1 @@ -2286,7 +2287,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 method: GET response: proto: HTTP/2.0 @@ -2296,13 +2297,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.42775ms + duration: 73.674792ms - id: 64 request: proto: HTTP/1.1 @@ -2322,7 +2323,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2332,13 +2333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"roles":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.049791ms + duration: 166.790167ms - id: 65 request: proto: HTTP/1.1 @@ -2358,7 +2359,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2368,13 +2369,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"permissions":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.484166ms + duration: 164.438125ms - id: 66 request: proto: HTTP/1.1 @@ -2394,7 +2395,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -2404,13 +2405,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-06-07T07:05:30.622Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802c3ab2bd50736694679f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:05:30.622Z","user_id":"auth0|64802c3ab2bd50736694679f"}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.427ms + duration: 158.140166ms - id: 67 request: proto: HTTP/1.1 @@ -2430,7 +2431,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2440,13 +2441,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 194.054041ms + duration: 283.313875ms - id: 68 request: proto: HTTP/1.1 @@ -2466,7 +2467,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/roles?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: GET response: proto: HTTP/2.0 @@ -2476,13 +2477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[],"start":0,"limit":50,"total":0}' + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.490333ms + duration: 152.652416ms - id: 69 request: proto: HTTP/1.1 @@ -2502,7 +2503,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2512,13 +2513,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64802c3ab2bd50736694679f","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 197.249125ms + duration: 156.726ms - id: 70 request: proto: HTTP/1.1 @@ -2538,7 +2539,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f/permissions?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2548,84 +2549,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.934208ms + duration: 170.641875ms - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802c3ab2bd50736694679f - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 322.921333ms + status: 200 OK + code: 200 + duration: 72.46075ms - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|64802c3ab2bd50736694679f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 97.916375ms + status: 200 OK + code: 200 + duration: 207.114042ms - id: 73 request: proto: HTTP/1.1 @@ -2645,7 +2647,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2655,13 +2657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[],"start":0,"limit":50,"total":0}' + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.994208ms + duration: 208.815125ms - id: 74 request: proto: HTTP/1.1 @@ -2681,7 +2683,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce method: GET response: proto: HTTP/2.0 @@ -2691,13 +2693,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Sf70E4wlTbc3Cy9t","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2023-06-07T07:20:12.672Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802facadfdd3a17a309cce","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:12.672Z","user_id":"auth0|64802facadfdd3a17a309cce"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.809458ms + duration: 189.294458ms - id: 75 request: proto: HTTP/1.1 @@ -2717,7 +2719,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 method: GET response: proto: HTTP/2.0 @@ -2727,14 +2729,2640 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[],"start":0,"limit":50,"total":0}' + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.308208ms + duration: 191.229458ms - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.151083ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 220.205666ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 176.095542ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.205125ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.888458ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|64802facadfdd3a17a309cce","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 196.548375ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802facadfdd3a17a309cce + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 438.957959ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|64802facadfdd3a17a309cce"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 83.456041ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.537083ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 76.165917ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 290.769208ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 204.6145ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 190.943125ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.583625ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.455958ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 182.530125ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 105.181833ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.45625ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 154.441291ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 223.3415ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 202.916958ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 79.914959ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.518875ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.399667ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.363333ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.957417ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.731917ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2023-06-07T07:20:22.098Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64802fb6f3e44861fb349804","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-06-07T07:20:22.098Z","user_id":"auth0|64802fb6f3e44861fb349804"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 191.640416ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|64802fb6f3e44861fb349804","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 77.611ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/roles?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.516709ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804/permissions?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"permissions":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 89.808125ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64802fb6f3e44861fb349804 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 215.773417ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|64802fb6f3e44861fb349804"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 195.72175ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 85.611958ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.726417ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 81.382708ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 77.880541ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.450334ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 173.311625ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 81.373ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.202916ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 189.882625ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 179.265ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 217.298459ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.530459ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.90325ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.865167ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 166.69325ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.260709ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 173.815042ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.547208ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.023708ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 78.1175ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.766834ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 82.688084ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 275.180792ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 202.371292ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 203.768292ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 202.286209ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 79.900292ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.964375ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.454625ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.365083ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 92.225125ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 173.962458ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.519375ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 161.866875ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 247.989584ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 78.492542ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.679709ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Bv2TwOBmtYUTEJzv","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 166.582041ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 72.572083ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0-SDK/0.17.2 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv/members?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[],"start":0,"limit":100,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.522541ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,7 +5380,7 @@ interactions: - application/json User-Agent: - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Sf70E4wlTbc3Cy9t + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Bv2TwOBmtYUTEJzv method: DELETE response: proto: HTTP/2.0 @@ -2768,4 +5396,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 86.979125ms + duration: 172.713459ms